mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-05 21:11:55 +07:00
17 lines
336 B
Go
17 lines
336 B
Go
/*
|
|
* 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"
|
|
)
|