1
0
mirror of https://github.com/IceWhaleTech/CasaOS.git synced 2025-07-06 23:37:26 +02:00
Files
CasaOS/route/doc.go

16 lines
340 B
Go
Raw Normal View History

//go:build doc
2021-09-26 10:35:02 +08:00
// +build doc
package route
import (
2021-10-22 17:19:07 +08:00
_ "github.com/IceWhaleTech/CasaOS/docs"
2021-09-26 10:35:02 +08:00
ginSwagger "github.com/swaggo/gin-swagger"
swaggerFiles "github.com/swaggo/gin-swagger/swaggerFiles"
2021-09-26 10:35:02 +08:00
)
func init() {
// swagHandler = ginSwagger.WrapHandler(swaggerFiles.Handler)
2021-09-26 10:35:02 +08:00
swagHandler = ginSwagger.WrapHandler(swaggerFiles.Handler)
}