Files
EdgeCommon/pkg/iplibrary/writer_interface.go
GoEdgeLab 2f3981704e v1.4.1
2024-07-27 13:29:26 +08:00

10 lines
320 B
Go

// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
package iplibrary
type WriterInterface interface {
WriteMeta() error
Write(ipFrom string, ipTo string, countryId int64, provinceId int64, cityId int64, townId int64, providerId int64) error
Sum() string
}