This commit is contained in:
mzz2017
2023-01-23 19:54:21 +08:00
commit 6fba4f8570
55 changed files with 8361 additions and 0 deletions

16
common/consts/routing.go Normal file
View File

@ -0,0 +1,16 @@
/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) since 2022, mzz2017 (mzz@tuta.io). All rights reserved.
*/
package consts
const (
RoutingDomain_Full = "full"
RoutingDomain_Keyword = "keyword"
RoutingDomain_Suffix = "suffix"
RoutingDomain_Regex = "regex"
Function_Domain = "domain"
Function_Ip = "ip"
)