10 lines
116 B
Go
10 lines
116 B
Go
package config
|
|
|
|
type Config struct {
|
|
Issuer string
|
|
}
|
|
|
|
func Default() Config {
|
|
return Config{Issuer: "iam-demo"}
|
|
}
|