feat(certificates): Endpoint with handler

This commit is contained in:
2024-12-09 16:48:06 +01:00
parent 561e7151c6
commit 79a0062f60
2 changed files with 74 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ func main() {
})
v1.Post("/contracts", handlers.GenerateContract)
v1.Post("/cards", handlers.GenerateCard)
v1.Post("/certificates", handlers.GenerateCertificate)
app.Use(handlers.NotFoundHandler)
docs.SwaggerInfo.BasePath = "/"