| 1 | namespace AgentForge.Endpoints; |
| 2 | |
| 3 | public 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 |