Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &commands.YAGCommand{ Cooldown: 2, CmdCategory: commands.CategoryDebug, HideFromCommandsPage: true, Name: "unbanserver", Description: ";))", HideFromHelp: true, RequiredArgs: 1, Arguments: []*dcmd.ArgDef{ {Name: "server", Type: dcmd.String}, }, RunFunc: util.RequireOwner(func(data *dcmd.Data) (interface{}, error) { var unbanned bool err := common.RedisPool.Do(radix.Cmd(&unbanned, "SREM", "banned_servers", data.Args[0].Str())) if err != nil { return err, err } if !unbanned { return "Server wasnt banned", nil } return "Unbanned server", nil }), }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.