Add new ready api endpoint

This commit is contained in:
Daniel 2024-04-23 10:26:08 +02:00
parent fc7e11e456
commit e2652d0934

View file

@ -18,6 +18,12 @@ export class DebugAPI {
})
}
ready(): Observable<string> {
return this.http.get(`${this.httpAPI}/v1/ready`, {
responseType: 'text'
})
}
getStack(): Observable<string> {
return this.http.get(`${this.httpAPI}/v1/debug/stack`, {
responseType: 'text'