mirror-nourybot/pkg/common/counter.go
2024-02-28 11:53:39 +01: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
}