diff --git a/internal/router/api/v1/v1.go b/internal/router/api/v1/v1.go index cabd8c6..9464f7d 100644 --- a/internal/router/api/v1/v1.go +++ b/internal/router/api/v1/v1.go @@ -30,4 +30,5 @@ import "git.supernets.org/perp/gopay/internal/context" func Register(ctx *context.Context) { v1 := ctx.Group("v1") v1.GET("scalar", ctx.API(Spec)) + v1.GET("docs", ctx.API(Spec)) }