Skip to content

Commit

Permalink
Add new ready api endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaavi committed Apr 23, 2024
1 parent fc7e11e commit e2652d0
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit e2652d0

Please sign in to comment.