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