using Connected.Annotations; using Microsoft.AspNetCore.Builder; [assembly: MicroService(MicroServiceType.Sys)] namespace Connected.Collections; internal class CollectionsStartup : Startup { public static WebApplication? Application { get; private set; } protected override void OnConfigure(WebApplication app) { Application = app; } }