init: first commit

This commit is contained in:
2025-12-01 19:35:50 +08:00
commit b0aef76685
81 changed files with 2348 additions and 0 deletions

7
api/client.go Normal file
View File

@@ -0,0 +1,7 @@
package api
import "encoding/json"
type Client interface {
Send(action string, params map[string]any) (json.RawMessage, error)
}