Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &commands.YAGCommand{ Cooldown: 2, CmdCategory: commands.CategoryDebug, HideFromCommandsPage: true, Name: "listflags", Description: ";))", HideFromHelp: true, RequiredArgs: 0, Arguments: []*dcmd.ArgDef{ {Name: "server", Type: dcmd.BigInt}, }, RunFunc: util.RequireOwner(func(data *dcmd.Data) (interface{}, error) { target := data.GuildData.GS.ID if data.Args[0].Int64() != 0 { target = data.Args[0].Int64() } flags, err := featureflags.GetGuildFlags(target) if err != nil { return nil, err } return "Feature flags: ```\n" + strings.Join(flags, "\n") + "```", nil }), }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.