Fix geoip close

This commit is contained in:
世界
2024-01-01 21:36:06 +08:00
parent c506255e0f
commit 40c7f3e170
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()
}