This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/config/conf_oauth.go
2024-08-19 00:14:01 +08:00

22 lines
561 B
Go

package config
// OAuth is the configuration of OAuth.
type OAuth struct {
Github Github `yaml:"github"`
Gitee Gitee `yaml:"gitee"`
}
// Github and GiteeConfig are the configuration of Github and Gitee OAuth.
type Github struct {
ClientID string `yaml:"client-id"`
ClientSecret string `yaml:"client-secret"`
RedirectURI string `yaml:"redirect-uri"`
}
// Gitee is the configuration of Gitee OAuth.
type Gitee struct {
ClientID string `yaml:"client-id"`
ClientSecret string `yaml:"client-secret"`
RedirectURI string `yaml:"redirect-uri"`
}