fix: remove node_modules

This commit is contained in:
2025-08-25 11:41:29 +02:00
parent d5b8b5d8d4
commit f72e4ba220
614 changed files with 884 additions and 67686 deletions

View File

@@ -4,7 +4,10 @@
*/
class SporeApiClient {
constructor(baseUrl = 'http://10.0.1.60') {
constructor(baseUrl) {
if (!baseUrl) {
throw new Error('baseUrl is required for SporeApiClient');
}
this.baseUrl = baseUrl;
this.defaultHeaders = {
'Content-Type': 'application/json',