mirror-nourybot/internal/common/counter.go
2023-08-08 02:37:37 +02:00

18 lines
304 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
}