mirror of
https://github.com/awfufu/qbot.git
synced 2026-03-01 05:19:44 +08:00
8 lines
138 B
Go
8 lines
138 B
Go
package api
|
|
|
|
import "encoding/json"
|
|
|
|
type Client interface {
|
|
SendParams(action string, params map[string]any) (json.RawMessage, error)
|
|
}
|