Ecstarjs / Ecstar

The easiest JavaScript/TypeScript Discord bot framework.

Home Page:https://ecstar.js.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Command File

mouse484 opened this issue · comments

import { command } from 'ecstar';

export default command(() => ({
  name: 'say',
  render(context) {
    context.send(context.args);
  },
}));