You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Runtime/IStartup.cs

13 lines
328 B

2 years ago
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
namespace Connected;
public interface IStartup
{
void ConfigureServices(IServiceCollection services);
void Configure(WebApplication app);
Task Initialize(Dictionary<string, string> args);
Task Start(Dictionary<string, string> args);
}