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

10 lines
295 B
Go
Raw Normal View History

2024-03-31 15:05:07 +08:00
// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
2022-12-22 11:38:59 +08:00
package agents
2024-03-31 15:05:07 +08:00
type DB interface {
Init() error
InsertAgentIP(ipId int64, ip string, agentCode string) error
ListAgentIPs(offset int64, size int64) (agentIPs []*AgentIP, err error)
2022-12-22 11:38:59 +08:00
}