Fix geoip close

This commit is contained in:
世界
2024-01-01 21:36:06 +08:00
parent 93fd758295
commit 333a6dca6d
2 changed files with 5 additions and 1 deletions

View File

@@ -32,3 +32,7 @@ func (r *Reader) Lookup(addr netip.Addr) string {
}
return "unknown"
}
func (r *Reader) Close() error {
return r.reader.Close()
}