9 lines
126 B
Go
9 lines
126 B
Go
package contract
|
|
|
|
type Configuration interface {
|
|
Secret() []byte
|
|
JWTCert() []byte
|
|
JWTTokenLife() int
|
|
JWTIssuer() string
|
|
}
|