mirror of https://github.com/1Panel-dev/1Panel
appstorecrontabdatabasedockerdocker-composedocker-containerdocker-imagedocker-uifilemanagerlamplnmppanel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
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) |
|
} |
|
}
|
|
|