5 lines
113 B
JavaScript
5 lines
113 B
JavaScript
import { BOT_PREFIX } from "../config.js";
|
|
|
|
export function botMsg(text) {
|
|
return `${BOT_PREFIX}\n${text}`;
|
|
} |