Compare commits

..

2 Commits

Author SHA1 Message Date
e2a05d0f12 feat mod 2026-01-12 00:41:42 +08:00
34247ac6ba feat 修改usn类型为string 2026-01-11 16:16:21 +08:00
4 changed files with 9 additions and 8 deletions

View File

@@ -12,8 +12,10 @@ client:
count: 100
usn: [ 1,10000000 ]
http:
address: "https://www.hlsq.asia/api"
port: 0
# address: "https://www.hlsq.asia/api"
# port: 0
address: "http://127.0.0.1"
port: 8503
websocket:
# address: "ws://47.108.184.184/ws/"
# address: "wss://www.hlsq.asia/ws/"

2
go.mod
View File

@@ -3,7 +3,7 @@ module git.hlsq.asia/mmorpg/service-robot
go 1.23.1
require (
git.hlsq.asia/mmorpg/service-common v0.0.0-20260108144540-69e82ec0fe77
git.hlsq.asia/mmorpg/service-common v0.0.0-20260110153008-0be254c6a298
github.com/gorilla/websocket v1.5.3
github.com/judwhite/go-svc v1.2.1
google.golang.org/protobuf v1.36.9

5
go.sum
View File

@@ -1,6 +1,5 @@
git.hlsq.asia/mmorpg/service-common v0.0.0-20260107061047-e02e56781e78 h1:4CP8w5jHDOdN7hym8YrtioxNDd7PS2WcZDrO6dtY344=
git.hlsq.asia/mmorpg/service-common v0.0.0-20260107061047-e02e56781e78/go.mod h1:xv6m1I2jUA6mudKVznygpnzMoshBQarthHD1QnkW4qc=
git.hlsq.asia/mmorpg/service-common v0.0.0-20260108144540-69e82ec0fe77/go.mod h1:xv6m1I2jUA6mudKVznygpnzMoshBQarthHD1QnkW4qc=
git.hlsq.asia/mmorpg/service-common v0.0.0-20260110153008-0be254c6a298 h1:zKQC0gqQfP9sUVYs7OsoHSrzdk379u6aenko6rMx1go=
git.hlsq.asia/mmorpg/service-common v0.0.0-20260110153008-0be254c6a298/go.mod h1:xv6m1I2jUA6mudKVznygpnzMoshBQarthHD1QnkW4qc=
github.com/BurntSushi/toml v1.2.0 h1:Rt8g24XnyGTyglgET/PRUNlrUeu9F5L+7FilkXfZgs0=
github.com/BurntSushi/toml v1.2.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
github.com/bwmarrin/snowflake v0.3.0 h1:xm67bEhkKh6ij1790JB83OujPR5CzNe8QuQqAgISZN0=

View File

@@ -25,7 +25,7 @@ type Client struct {
cancel context.CancelFunc
writeChan chan []byte
USN int64
USN string
}
func NewClient(httpAddr, websocketAddr string) *Client {
@@ -56,7 +56,7 @@ func (c *Client) Start() {
Code int `json:"code"`
Msg string `json:"msg"`
Data struct {
USN int64 `json:"usn"`
USN string `json:"usn"`
Name string `json:"name"`
AccessToken string `json:"accessToken"`
RefreshToken string `json:"refreshToken"`