1Panel/cmd/server/main.go

47 lines
1.3 KiB
Go
Raw Normal View History

package main
import (
2022-12-14 13:03:47 +00:00
"fmt"
2023-01-04 14:31:51 +00:00
"os"
2022-12-14 13:03:47 +00:00
"github.com/1Panel-dev/1Panel/cmd/server/cmd"
2022-12-14 11:39:32 +00:00
_ "github.com/1Panel-dev/1Panel/cmd/server/docs"
2023-02-17 08:21:13 +00:00
_ "net/http/pprof"
)
2022-12-14 11:39:32 +00:00
// @title 1Panel
// @version 1.0
// @description Top-Rated Web-based Linux Server Management Tool
2022-12-14 11:39:32 +00:00
// @termsOfService http://swagger.io/terms/
// @license.name GPL-3.0
// @license.url https://www.gnu.org/licenses/gpl-3.0.html
2022-12-14 11:39:32 +00:00
// @BasePath /api/v1
// @schemes http https
// @securityDefinitions.apikey ApiKeyAuth
// @description Custom Token Format, Format: md5('1panel' + 1Panel-Token + 1Panel-Timestamp).
// @description ```
// @description eg:
// @description curl -X GET "http://localhost:4004/api/v1/resource" \
// @description -H "1Panel-Token: <1panel_token>" \
// @description -H "1Panel-Timestamp: <current_unix_timestamp>"
// @description ```
// @description - `1Panel-Token` is the key for the panel API interface.
// @type apiKey
// @in Header
// @name 1Panel-Token
// @securityDefinitions.apikey Timestamp
// @type apiKey
// @in header
// @name 1Panel-Timestamp
// @description - `1Panel-Timestamp` is the Unix timestamp of the current time in seconds.
2022-12-14 11:39:32 +00:00
//go:generate swag init -o ./docs -g main.go -d ../../backend -g ../cmd/server/main.go
func main() {
2022-12-14 13:03:47 +00:00
if err := cmd.RootCmd.Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}