refactor: remove commented interface in storage.service.ts

**Motivations :**
- Supprimer le code mort (interface commentée)

**Modifications :**
- Supprimer l'interface TestResponse commentée dans storage.service.ts

**Pages affectées :**
- src/services/storage.service.ts (supprime interface commentée)
This commit is contained in:
NicolasCantu 2025-10-29 16:48:10 +01:00
parent 393b75c03b
commit 1f9100e3fe

View File

@ -106,11 +106,6 @@ export async function retrieveData(servers: string[], key: string): Promise<Arra
return null;
}
// interface TestResponse { // Unused interface
// key: string;
// value: boolean;
// }
export async function testData(url: string, _key: string): Promise<boolean | null> {
try {
const response = await axios.get(url);