mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-24 09:15:14 +00:00
26 lines
540 B
JavaScript
26 lines
540 B
JavaScript
export const rule = {
|
|
character: {
|
|
reg: "^#(.*)(#.*)?$",
|
|
priority: 208,
|
|
describe: "【#刻晴】角色详情",
|
|
},
|
|
setCharacterImg: {
|
|
reg: "^#(添加|更新)(.*)图片(#.*)?(上|右|下|左)?$",
|
|
priority: 208,
|
|
},
|
|
|
|
userStat: {
|
|
reg: "^#*user\s*\d*",
|
|
priority: 200
|
|
},
|
|
rebuildCookie: {
|
|
reg: "#rebuild"
|
|
}
|
|
|
|
};
|
|
|
|
import { character, setCharacterImg } from "./apps/character.js";
|
|
import {userStat, rebuildCookie} from "./apps/admin.js";
|
|
|
|
export { character, setCharacterImg, userStat, rebuildCookie };
|