mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 22:12:23 +08:00
10 lines
243 B
Go
10 lines
243 B
Go
package version
|
|
|
|
import "github.com/uozi-tech/cosy"
|
|
|
|
var (
|
|
e = cosy.NewErrorScope("version")
|
|
ErrInvalidCommitSHA = e.New(53001, "invalid commit SHA")
|
|
ErrReleaseAPIFailed = e.New(53002, "release API request failed: {0}")
|
|
)
|