blob: ccf9032e47d827b63590c6c01315a7e1a1e1213c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import type { Opencode } from '../client';
export abstract class APIResource {
protected _client: Opencode;
constructor(client: Opencode) {
this._client = client;
}
}
|