blob: 2d6c60ae9ea67c2f8ab036989154953bdbb21132 (
plain)
1
2
3
4
5
6
7
8
9
|
import { client } from "../../client";
/**
* Sends testimony command.
* @param {string} testimony type
*/
export const sendRT = (testimony: string) => {
client.sender.sendServer(`RT#${testimony}#%`);
}
|