mirror of
https://github.com/PretendoNetwork/friends.git
synced 2025-04-02 11:01:46 -04:00
14 lines
441 B
Go
14 lines
441 B
Go
package database_wiiu
|
|
|
|
import (
|
|
"github.com/PretendoNetwork/nex-go/v2/types"
|
|
friends_wiiu_types "github.com/PretendoNetwork/nex-protocols-go/v2/friends-wiiu/types"
|
|
)
|
|
|
|
// GetUserNotifications returns notifications for a user
|
|
func GetUserNotifications(pid uint32) types.List[friends_wiiu_types.PersistentNotification] {
|
|
// TODO - Do this
|
|
notifications := types.NewList[friends_wiiu_types.PersistentNotification]()
|
|
|
|
return notifications
|
|
}
|