Files
waf-platform/EdgeCommon/pkg/iplibrary/default_ip_library_plus.go
2026-02-04 20:27:13 +08:00

12 lines
386 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
//go:build plus
package iplibrary
// InitPlus 加载商业版IP库
// 注意Plus 版本现在也使用 MaxMind 库,与 InitDefault() 使用相同的逻辑
func InitPlus() error {
// Plus 版本现在也使用 MaxMind直接调用 InitDefault()
return InitDefault()
}