mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
17 lines
303 B
Go
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
|
||
|
}
|