mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-19 01:41:55 +08:00
11 lines
246 B
Go
11 lines
246 B
Go
package aliyunapigw
|
|
|
|
type ServiceType string
|
|
|
|
const (
|
|
// 服务类型:原 API 网关。
|
|
SERVICE_TYPE_TRADITIONAL = ServiceType("traditional")
|
|
// 服务类型:云原生 API 网关。
|
|
SERVICE_TYPE_CLOUDNATIVE = ServiceType("cloudnative")
|
|
)
|