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