An open API service indexing awesome lists of open source software.

https://github.com/emnudge/pushover

A discord bot for team management with a unique command syntax
https://github.com/emnudge/pushover

Last synced: about 1 year ago
JSON representation

A discord bot for team management with a unique command syntax

Awesome Lists containing this project

README

          

# PUSHOVER

Discord bot template with unique command syntax.

Instead of the usual `[prefix]command arg1 arg2` syntax, pushover's syntax looks like a function.
Commands are instead written as `command(arg1, arg2)`. This allows commands to be a lot more intuitive to read and write. This syntax also allows us to "extend" from mini-libraries, known as utilities.

Commands are separated into files in folders. Commands will take up the name of their folder in the syntax of `[Folder name].[command name]([arguments])`.
Therefore, a command named `set` in the folder `ADMIN` will be called using the syntax `ADMIN.set([args])`.