mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
10 lines
182 B
Go
10 lines
182 B
Go
package release
|
|
|
|
type CommitType = string
|
|
|
|
const (
|
|
CommitApiDocument CommitType = "api_doc"
|
|
CommitUpstream CommitType = "upstream"
|
|
CommitApiProxy CommitType = "api_proxy"
|
|
)
|