mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			295 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			295 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
 | 
						|
 | 
						|
package agents
 | 
						|
 | 
						|
type DB interface {
 | 
						|
	Init() error
 | 
						|
	InsertAgentIP(ipId int64, ip string, agentCode string) error
 | 
						|
	ListAgentIPs(offset int64, size int64) (agentIPs []*AgentIP, err error)
 | 
						|
}
 |