mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 07:50:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			194 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			194 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package iplibrary
 | 
						|
 | 
						|
type LibraryInterface interface {
 | 
						|
	// 加载数据库文件
 | 
						|
	Load(dbPath string) error
 | 
						|
 | 
						|
	// 查询IP
 | 
						|
	Lookup(ip string) (*Result, error)
 | 
						|
 | 
						|
	// 关闭数据库文件
 | 
						|
	Close()
 | 
						|
}
 |