Forge
csharp3407750f
1namespace AgentForge.Endpoints;
2
3public static class ForgeEndpoints
4{
5 public static RouteGroupBuilder MapForgeApi(this RouteGroupBuilder api)
6 {
7 api.MapRegistryEndpoints();
8 api.MapRepoEndpoints();
9 api.MapCiEndpoints();
10 api.MapGitEndpoints();
11 api.MapProvenanceEndpoints();
12 api.MapAuthEndpoints();
13 api.MapAdminEndpoints();
14 api.MapCapabilitiesEndpoints();
15 api.MapCommandEndpoints();
16 api.MapMcpEndpoints();
17 return api;
18 }
19}
20
View only · write via MCP/CIDE