aicra/types.go

20 lines
340 B
Go
Raw Normal View History

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