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.
13 lines
328 B
13 lines
328 B
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);
|
|
}
|