Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &commands.YAGCommand{ Cooldown: 2, CmdCategory: commands.CategoryDebug, HideFromCommandsPage: true, Name: "memstats", Description: ";))", HideFromHelp: true, RunFunc: util.RequireOwner(func(data *dcmd.Data) (interface{}, error) { var m runtime.MemStats runtime.ReadMemStats(&m) buf, _ := json.Marshal(m) send := &discordgo.MessageSend{ Content: "Memory stats", File: &discordgo.File{ ContentType: "application/json", Name: "memory_stats.json", Reader: bytes.NewReader(buf), }, } _, err := common.BotSession.ChannelMessageSendComplex(data.ChannelID, send) return nil, err }), }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.