Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 16:24:10 +01:00
parent a3689f4cd2
commit 9b61909eab
3 changed files with 13 additions and 5 deletions

10
dist/fastify.js vendored
View File

@@ -1,14 +1,20 @@
export class Client {
export class BaseClient {
axiosInstance;
constructor(axiosInstance) {
this.axiosInstance = axiosInstance;
}
getAxios() {
return this.axiosInstance;
}
}
export class Service {
export class BaseService {
client;
constructor(client) {
this.client = client;
}
getClient() {
return this.client;
}
getSuccessfulResult(result) {
return {
result,