mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-07 01:08:24 +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"`
|
|
}
|