20 lines
340 B
Go
20 lines
340 B
Go
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{}
|
|
}
|