Skip to content

Commit

Permalink
feat: Updated sdks/ts/src/managers/base.ts (#243)
Browse files Browse the repository at this point in the history
Co-authored-by: sweep-ai[bot] <128439645+sweep-ai[bot]@users.noreply.github.com>
  • Loading branch information
sweep-ai[bot] authored Apr 18, 2024
1 parent 65b9577 commit 33ebc99
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sdks/ts/src/managers/base.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
import { JulepApiClient } from "../api/JulepApiClient";

/**
* BaseManager serves as the base class for all manager classes that interact with the Julep API.
* It provides common functionality needed for API interactions.
*/
export class BaseManager {
/**
* Constructs a new instance of BaseManager.
* @param apiClient The JulepApiClient instance used for API interactions.
*/
constructor(public apiClient: JulepApiClient) {}
}

0 comments on commit 33ebc99

Please sign in to comment.