public static void Run <T>(string[] args) where T : class
        {
            var system = new AspNetCoreSystem();

            system.UseStartup <T>();

            StorytellerAgent.Run(args, system);
        }
Esempio n. 2
0
 public AspNetCoreContext(AspNetCoreSystem parent)
 {
     _parent = parent;
 }