add RunSession() in service

This commit is contained in:
Gregory Brzezinski 2023-01-13 17:29:04 +03:00
parent 0292021437
commit 0ef39596f2

View File

@ -1,6 +1,7 @@
import { Injectable } from '@angular/core';
import { Game } from '../interfaces/game.interface';
import { GoRunGame } from './go';
import { Session } from '../interfaces/session.interface';
import { GoRunGame, GoRunSession } from './go';
@Injectable({
providedIn: 'root'
})
@ -20,4 +21,7 @@ export class LauncherService {
// console.log(game.title)
// console.log(game.gameId)
}
public RunSession(session: Session){
GoRunSession(session.skirdaSessionId)
}
}