mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-08 19:40:25 +08:00
10 lines
241 B
Go
10 lines
241 B
Go
// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package agents
|
|
|
|
type AgentIP struct {
|
|
Id int64 `json:"id"`
|
|
IP string `json:"ip"`
|
|
AgentCode string `json:"agentCode"`
|
|
}
|