1Panel/cmd/server/main.go
2022-12-15 11:12:25 +08:00

23 lines
498 B
Go

package main
import (
"github.com/1Panel-dev/1Panel/backend/server"
_ "github.com/1Panel-dev/1Panel/cmd/server/docs"
)
// @title 1Panel
// @version 1.0
// @description 开源Linux面板
// @termsOfService http://swagger.io/terms/
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @host localhost
// @BasePath /api/v1
//go:generate swag init -o ./docs -d ../../backend/app/api/v1 -g ../../../../cmd/server/main.go
func main() {
server.Start()
}