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