Files
APIPark/service/release/commit.go
T
2024-11-27 19:46:52 +08:00

13 lines
317 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"
CommitStrategy CommitType = "strategy"
)