aicra/implement/types.go

16 lines
267 B
Go
Raw Normal View History

2018-06-01 08:51:51 +00:00
package implement
import (
"git.xdrm.io/xdrm-brackets/gfw/err"
"sync"
)
type Arguments map[string]interface{}
type Controller func(map[string]interface{}, *Response) Response
2018-06-01 08:51:51 +00:00
type Response struct {
data map[string]interface{}
m sync.Mutex
Err err.Error
}