aicra/types.go

23 lines
444 B
Go

package gfw
import (
"git.xdrm.io/gfw/checker"
"git.xdrm.io/gfw/internal/config"
)
type Server struct {
config *config.Controller
Params map[string]interface{}
Checker *checker.TypeRegistry // type check
err Err
}
type Request struct {
Uri []string
ControllerUri []string
FormData map[string]interface{}
GetData map[string]interface{}
UrlData []interface{}
Data map[string]interface{}
}