package config type GithubOauth struct { ClientId string `mapstructure:"client-id"` ClientSecret string `mapstructure:"client-secret"` } type GoogleOauth struct { ClientId string `mapstructure:"client-id"` ClientSecret string `mapstructure:"client-secret"` } type OidcOauth struct { Issuer string `mapstructure:"issuer"` ClientId string `mapstructure:"client-id"` ClientSecret string `mapstructure:"client-secret"` } type LinuxdoOauth struct { ClientId string `mapstructure:"client-id"` ClientSecret string `mapstructure:"client-secret"` }