github.com/TeaOSLab/EdgeNode@v1.3.8/internal/iplibrary/ip_list_db.go (about)

     1  // Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
     2  
     3  package iplibrary
     4  
     5  import "github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
     6  
     7  type IPListDB interface {
     8  	Name() string
     9  	DeleteExpiredItems() error
    10  	ReadMaxVersion() (int64, error)
    11  	ReadItems(offset int64, size int64) (items []*pb.IPItem, goNext bool, err error)
    12  	AddItem(item *pb.IPItem) error
    13  }