Add resolver for inbound

This commit is contained in:
世界
2022-07-07 23:36:32 +08:00
parent f65f3f1ba0
commit b91ed698cd
22 changed files with 261 additions and 173 deletions

3
constant/cgo.go Normal file
View File

@@ -0,0 +1,3 @@
package constant
const CGO_ENABLED = true

5
constant/cgo_disabled.go Normal file
View File

@@ -0,0 +1,5 @@
//go:build !cgo
package constant
const CGO_ENABLED = false