go-dette/commands.go

18 lines
1.2 KiB
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
import (
neco "git.nefrace.ru/nefrace/nechotron"
)
var commandMe = neco.NewCommand("me", "Пишу ваш текст о вас в третьем лице", false)
var commandHelp = neco.NewCommand("help", "Показываю данный текст", false)
var commandSay = neco.NewCommand("say", "Пишу ваш текст от своего имени.", true)
var commandFeed = neco.NewCommand("subscribe", "Регистрирую данный чат в качестве получателя рассылки", true)
var commandFeedUnsub = neco.NewCommand("unsubscribe", "Удаляю данный чат из рассылки", true)
var commandTop = neco.NewCommand("top", "Показываю ТОП-10 пользователей по числу кармы", false)
var commandBottom = neco.NewCommand("top", "Показываю отрицательный ТОП-10 пользователей по числу кармы", false)
var defaultCommands = []*neco.Command{commandHelp, commandMe, commandTop, commandBottom}
var adminCommands = []*neco.Command{commandSay, commandFeed, commandFeed, commandFeedUnsub}
var allCommands = append(defaultCommands, adminCommands...)