2018-05-21 10:02:24 +00:00
|
|
|
package gfw
|
|
|
|
|
|
|
|
import (
|
2018-05-30 07:04:00 +00:00
|
|
|
"git.xdrm.io/xdrm-brackets/gfw/checker"
|
2018-05-30 07:06:26 +00:00
|
|
|
"git.xdrm.io/xdrm-brackets/gfw/config"
|
2018-05-21 10:02:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Server struct {
|
2018-05-24 13:54:36 +00:00
|
|
|
config *config.Controller
|
|
|
|
Params map[string]interface{}
|
|
|
|
Checker *checker.TypeRegistry // type check
|
2018-05-21 10:02:24 +00:00
|
|
|
}
|