friends/database/wiiu/get_user_notifications.go
2025-02-15 23:31:32 -05:00

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
}