Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 16:22:14 +01:00
parent 5f9b97ca54
commit d0e9f28c8c
4 changed files with 70 additions and 4 deletions

25
dist/fastify.js vendored
View File

@@ -1 +1,24 @@
export {};
export class Client {
axiosInstance;
constructor(axiosInstance) {
this.axiosInstance = axiosInstance;
}
}
export class Service {
client;
constructor(client) {
this.client = client;
}
getSuccessfulResult(result) {
return {
result,
successful: true,
};
}
getErrorResult(error) {
return {
result: error,
successful: false,
};
}
}