Skip to content

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Docs

Installation


download package with npm or bun.

// in node
npm install @discall/discall

// in bun
bun add @discall/discall

Command


register command with addCommand.

addCommand({
    name: "test",
    run: async (ctx) => {
        // ...do something
    }
});