initial commit

This commit is contained in:
StevanFreeborn
2023-01-25 17:08:19 -06:00
commit 9edb4bd316
5 changed files with 160 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
class OnspringClient {
private readonly _baseUrl: string;
private readonly _apiKey: string;
constructor(baseUrl: string, apiKey: string) {
this._baseUrl = baseUrl;
this._apiKey = apiKey;
}
}
View File