You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
279 B
Go
13 lines
279 B
Go
8 months ago
|
package db
|
||
|
|
||
|
func FetchPlayerCount() (int, error) {
|
||
|
var playerCount int
|
||
|
|
||
|
err := handle.QueryRow("SELECT COUNT(*) FROM accounts WHERE lastActivity > DATE_SUB(UTC_TIMESTAMP(), INTERVAL 5 MINUTE)").Scan(&playerCount)
|
||
|
if err != nil {
|
||
|
return 0, err
|
||
|
}
|
||
|
|
||
|
return playerCount, nil
|
||
|
}
|