#include "errno.hpp" namespace iflytop { const Errno Errno::OK(0, "OK"); const Errno Errno::ERR_USER_NAME_EXIST(101, "用户名已存在"); const Errno Errno::ERR_USER_PASSWD_ERROR(102, "密码错误"); const Errno Errno::ERR_USER_SPACE_FULL(103, "无法添加更多用户"); } // namespace iflytop