Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 17:35:58 +01:00
parent 25ff0b9903
commit 1d4ade717a
3 changed files with 10 additions and 3 deletions

6
dist/fastify.js vendored
View File

@@ -1,3 +1,9 @@
export class API_Error {
error;
constructor(error) {
this.error = error;
}
}
export class BaseClient {
axiosInstance;
constructor(axiosInstance) {