try config handling

This commit is contained in:
Livio Amstutz 2019-11-21 13:56:03 +01:00
parent 7e1d2f0b13
commit 8b0f4438fb
7 changed files with 171 additions and 35 deletions

View file

@ -2,8 +2,8 @@ package server
type Configuration interface {
Issuer() string
AuthorizationEndpoint() string
TokenEndpoint() string
UserinfoEndpoint() string
AuthorizationEndpoint() Endpoint
TokenEndpoint() Endpoint
UserinfoEndpoint() Endpoint
Port() string
}