mirror of
https://gitee.com/chuangxxt/share-copilot
synced 2025-04-16 10:23:25 +00:00
17 lines
423 B
Go
17 lines
423 B
Go
package main
|
|
|
|
type Config struct {
|
|
Server struct {
|
|
Domain string `json:"domain"`
|
|
Host string `json:"host"`
|
|
Port int `json:"port"`
|
|
CertPath string `json:"certPath"`
|
|
KeyPath string `json:"keyPath"`
|
|
} `json:"server"`
|
|
CopilotConfig struct {
|
|
GithubApiUrl string `json:"github_api_url"`
|
|
Token []string `json:"token"`
|
|
} `json:"copilot_config"`
|
|
Verification string `json:"verification"`
|
|
}
|