mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-23 18:49:21 +08:00
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package main
|
||
|
||
import (
|
||
"fmt"
|
||
"os"
|
||
|
||
"github.com/1Panel-dev/1Panel/cmd/server/cmd"
|
||
_ "github.com/1Panel-dev/1Panel/cmd/server/docs"
|
||
_ "net/http/pprof"
|
||
)
|
||
|
||
// @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
|
||
// @BasePath /api/v1
|
||
// @schemes http https
|
||
|
||
// @securityDefinitions.apikey CustomToken
|
||
// @description 自定义 Token 格式,格式:md5('1panel' + 1Panel-Token + 1Panel-Timestamp)。
|
||
// @description ```
|
||
// @description 示例请求头:
|
||
// @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` 为面板 API 接口密钥。
|
||
// @type apiKey
|
||
// @in Header
|
||
// @name 1Panel-Token
|
||
// @securityDefinitions.apikey Timestamp
|
||
// @type apiKey
|
||
// @in header
|
||
// @name 1Panel-Timestamp
|
||
// @description - `1Panel-Timestamp` 为当前时间的 Unix 时间戳(单位:秒)。
|
||
|
||
//go:generate swag init -o ./docs -g main.go -d ../../backend -g ../cmd/server/main.go
|
||
func main() {
|
||
if err := cmd.RootCmd.Execute(); err != nil {
|
||
fmt.Fprintln(os.Stderr, err)
|
||
os.Exit(1)
|
||
}
|
||
}
|