2018-05-21 10:02:24 +00:00
|
|
|
package gfw
|
|
|
|
|
|
|
|
import (
|
2018-06-15 13:28:28 +00:00
|
|
|
"git.xdrm.io/go/xb-api/checker"
|
|
|
|
"git.xdrm.io/go/xb-api/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
|
|
|
}
|