mirror-nourybot/pkg/common/counter.go
2022-08-07 17:24:47 +02:00

17 lines
303 B
Go

package common
var (
tempCommands = 0
)
// CommandUsed is called on every command incremenenting tempCommands.
func CommandUsed() {
tempCommands++
}
// GetCommandsUsed returns the amount of commands that have been used
// since the last restart.
func GetCommandsUsed() int {
return tempCommands
}