Add resolver for inbound

This commit is contained in:
世界
2022-07-07 23:36:32 +08:00
parent 538a1f5909
commit 9c256afc1a
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