Files
2026-02-03 10:05:53 +08:00

10 lines
116 B
Go

package config
type Config struct {
Issuer string
}
func Default() Config {
return Config{Issuer: "iam-demo"}
}