mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-04-24 15:37:43 -05:00
21 lines
431 B
TypeScript
21 lines
431 B
TypeScript
export const shopgetname: EPR = async (info, data, send) => {
|
|
return send.object(
|
|
K.ATTR({
|
|
status: "0",
|
|
opname: "CORE",
|
|
pid: "57",
|
|
cls_opt: "0",
|
|
hr: "0",
|
|
mi: "0",
|
|
})
|
|
);
|
|
};
|
|
|
|
export const shopgetconvention: EPR = async (info, data, send) => {
|
|
return send.deny();
|
|
};
|
|
|
|
export const shopsetconvention: EPR = async (info, data, send) => {
|
|
return send.deny();
|
|
};
|