mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-04 10:13:53 +08:00
12 lines
274 B
Go
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"
|
|
)
|