Files
EdgeNode/internal/utils/agents/agent_ip.go

10 lines
246 B
Go
Raw Normal View History

2022-12-22 11:38:59 +08:00
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
package agents
type AgentIP struct {
2024-03-31 15:05:07 +08:00
Id int64 `json:"id"`
IP string `json:"ip"`
AgentCode string `json:"agentCode"`
2022-12-22 11:38:59 +08:00
}