mirror-nourybot/internal/common/counter.go

18 lines
304 B
Go
Raw Normal View History

2023-08-08 02:37:37 +02:00
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
}