2018-04-09 21:55:27 +09:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2018-04-11 23:38:30 +09:00
|
|
|
"crypto/rsa"
|
|
|
|
|
2018-04-12 19:05:41 +09:00
|
|
|
ocec "git.loafle.net/overflow/commons-go/external/config"
|
2018-04-10 15:03:15 +09:00
|
|
|
ogrs "git.loafle.net/overflow/gateway_rpc/server"
|
2018-04-09 21:55:27 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2018-04-10 15:03:15 +09:00
|
|
|
ServerHandler *ogrs.ServerHandlers `json:"serverHandler"`
|
2018-04-12 19:05:41 +09:00
|
|
|
External *ocec.External `json:"external"`
|
2018-04-11 22:08:56 +09:00
|
|
|
|
|
|
|
VerifyKey *rsa.PublicKey
|
|
|
|
SignKey *rsa.PrivateKey
|
2018-04-09 21:55:27 +09:00
|
|
|
}
|