Move packages under top-level 'src' folder

This commit is contained in:
SteveSandersonMS
2016-01-26 15:06:36 +00:00
parent 5e5b12dc54
commit 47c956cc4d
43 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
using System;
using System.Threading.Tasks;
namespace Microsoft.AspNet.NodeServices {
public interface INodeServices : IDisposable {
Task<T> Invoke<T>(string moduleName, params object[] args);
Task<T> InvokeExport<T>(string moduleName, string exportedFunctionName, params object[] args);
}
}