2018-04-10 06:58:38 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2018-04-11 14:23:47 +00:00
|
|
|
"crypto/rsa"
|
|
|
|
|
2018-04-26 08:19:55 +00:00
|
|
|
occe "git.loafle.net/overflow/commons-go/config/external"
|
2018-04-10 06:58:38 +00:00
|
|
|
ogrs "git.loafle.net/overflow/gateway_rest/server"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
ServerHandler *ogrs.ServerHandlers `json:"serverHandler"`
|
2018-04-26 08:19:55 +00:00
|
|
|
External *occe.External `json:"external"`
|
2018-04-11 13:08:41 +00:00
|
|
|
|
|
|
|
VerifyKey *rsa.PublicKey
|
|
|
|
SignKey *rsa.PrivateKey
|
2018-04-10 06:58:38 +00:00
|
|
|
}
|