mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
12 lines
177 B
Go
12 lines
177 B
Go
package function
|
|
|
|
type Function interface {
|
|
Invoke(...interface{}) (string, error)
|
|
Name() string
|
|
}
|
|
|
|
type resVo struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
}
|