Files
APIPark/service/release/commit.go
T
2024-08-30 18:33:35 +08:00

12 lines
274 B
Go

package release
type CommitType = string
const (
CommitApiDocument CommitType = "api_doc"
CommitApiRequest CommitType = "api_request"
CommitUpstream CommitType = "upstream"
CommitApiProxy CommitType = "api_proxy"
CommitServiceDoc CommitType = "service_doc"
)