7 lines
108 B
Go
7 lines
108 B
Go
|
package app
|
||
|
|
||
|
// ToDo: implement
|
||
|
func (a *App) HasPermissionToGame(userID, gameID int) bool {
|
||
|
return true
|
||
|
}
|