diff --git a/server.go b/server.go index a9a4117..b27a5de 100644 --- a/server.go +++ b/server.go @@ -5,6 +5,7 @@ import ( "crypto/subtle" "fmt" "log" + "net/http" "git.agecem.com/bottin/agendas/ui" "git.agecem.com/bottin/bottin/v10/pkg/bottin" @@ -63,6 +64,7 @@ func RunServer(ctx context.Context, cfg Config, bottinClient *bottin.APIClient, ) e.GET("/", UIIndex(ctx, bottinClient, dbClient)) + e.GET("/nothing/", func(c echo.Context) error { return c.NoContent(http.StatusOK) }) //e.GET("/transaction/", UIReadTransaction e.POST("/transaction/", UICreateTransaction(ctx, cfg, bottinClient, dbClient))