(input: CreateGoalInput)
| 396 | // by the host. |
| 397 | |
| 398 | async createGoal(input: CreateGoalInput): Promise<GoalSnapshot> { |
| 399 | this.ensureOpen(); |
| 400 | return this.rpc.createGoal({ sessionId: this.id, ...input }); |
| 401 | } |
| 402 | |
| 403 | async getGoal(): Promise<GoalToolResult> { |
| 404 | this.ensureOpen(); |
no test coverage detected