Files
user-system/docs/docs.go

14 lines
192 B
Go
Raw Normal View History

package docs
import "github.com/swaggo/swag"
type swaggerSpec struct{}
func (swaggerSpec) ReadDoc() string {
return SwaggerJSON
}
func init() {
swag.Register(swag.Name, swaggerSpec{})
}