add RunSession() in service
This commit is contained in:
parent
0292021437
commit
0ef39596f2
@ -1,6 +1,7 @@
|
|||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Game } from '../interfaces/game.interface';
|
import { Game } from '../interfaces/game.interface';
|
||||||
import { GoRunGame } from './go';
|
import { Session } from '../interfaces/session.interface';
|
||||||
|
import { GoRunGame, GoRunSession } from './go';
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@ -20,4 +21,7 @@ export class LauncherService {
|
|||||||
// console.log(game.title)
|
// console.log(game.title)
|
||||||
// console.log(game.gameId)
|
// console.log(game.gameId)
|
||||||
}
|
}
|
||||||
|
public RunSession(session: Session){
|
||||||
|
GoRunSession(session.skirdaSessionId)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user