You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
572 B

6 years ago
package ecode
// common
6 years ago
const (
NotSignIn = 1001
NotSignInMsg = "user need sign in"
ParamInvalid = 1002
ParamInvalidMsg = "param invalid"
CommonErrorMsg = "Oh no, an unexpected error happend"
DatabaseError = 1003
NoPermission = 1004
NoPermissionMsg = "You don't have permission"
)
// article
const (
ArticleNotFound = 1100
ArticleNotFoundMsg = "Target article not found"
PostNotFound = 1101
PostNotFoundMsg = "Target post not found"
6 years ago
)
// comment
const (
CommentLiked = 1200
CommentLikedMsg = "You have agreed this comment before"
)