From aa85dab2879126219523e792b98ee571aa4b8535 Mon Sep 17 00:00:00 2001 From: Vins Date: Thu, 30 Nov 2023 11:07:40 +0100 Subject: [PATCH] @Service on OvhService --- src/services/common/OvhService/OvhService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/common/OvhService/OvhService.ts b/src/services/common/OvhService/OvhService.ts index b05b8e03..7e70d413 100644 --- a/src/services/common/OvhService/OvhService.ts +++ b/src/services/common/OvhService/OvhService.ts @@ -2,7 +2,7 @@ import { BackendVariables } from "@Common/config/variables/Variables"; import BaseService from "@Services/BaseService"; import { Service } from "typedi"; -Service() +@Service() export default class OvhService extends BaseService { constructor(private variables: BackendVariables) {