10 lines
378 B
Go
10 lines
378 B
Go
package msg
|
||
|
||
const (
|
||
ErrProfileTitleEmpty = "用户配置标题不能为空"
|
||
ErrProfileEmailRequiredWhenTeamTrue = "当team为true时,email不能为空"
|
||
ErrPlatformEmpty = "平台名称不能为空"
|
||
ErrorCreateProfileFailed = "创建用户配置失败"
|
||
ErrorGetProfilesFailed = "获取用户配置列表失败"
|
||
)
|