feat(adapter): add support for additional parameters in Adapter and Client structs

This commit is contained in:
Tension
2025-12-30 14:39:15 +08:00
parent 8436c2d6ee
commit 77a5373d44
5 changed files with 96 additions and 64 deletions
+5 -3
View File
@@ -2,9 +2,11 @@ package types
type (
SubscribeRequest struct {
Flag string
Token string
UA string
Flag string
Token string
Type string
UA string
Params map[string]string
}
SubscribeResponse struct {
Config []byte