mirror of
https://github.com/PretendoNetwork/friends.git
synced 2026-04-25 07:18:36 -05:00
13 lines
383 B
Go
13 lines
383 B
Go
package database
|
|
|
|
import (
|
|
"github.com/PretendoNetwork/friends-secure/globals"
|
|
"github.com/PretendoNetwork/nex-go"
|
|
)
|
|
|
|
func UpdateUserLastOnlineTime(pid uint32, lastOnline *nex.DateTime) {
|
|
if err := cassandraClusterSession.Query(`UPDATE pretendo_friends.last_online SET time=? WHERE pid=?`, lastOnline.Value(), pid).Exec(); err != nil {
|
|
globals.Logger.Critical(err.Error())
|
|
}
|
|
}
|