Files
GoEdgeNode/internal/iplibrary/ip_list_db.go
GoEdgeLab c19be78e0d v1.4.1
2024-07-27 15:42:50 +08:00

15 lines
439 B
Go

// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
package iplibrary
import "github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
type IPListDB interface {
Name() string
DeleteExpiredItems() error
ReadMaxVersion() (int64, error)
UpdateMaxVersion(version int64) error
ReadItems(offset int64, size int64) (items []*pb.IPItem, goNext bool, err error)
AddItem(item *pb.IPItem) error
}