superChat-back/src/main/java/com/cn/app/superbot/constants/RoleConstants.java

21 lines
304 B
Java

package com.cn.app.superbot.constants;
/**
* The interface Role constants.
*
* @author bdth
* @email 2074055628 @qq.om
*/
public interface RoleConstants {
/**
* The constant USER.
*/
String USER = "USER";
/**
* The constant ADMIN.
*/
String ADMIN = "ADMIN";
}