Téléverser les fichiers vers "/"

This commit is contained in:
2026-02-20 15:16:33 +00:00
parent 7493367116
commit 5d8d3707c1
4 changed files with 76 additions and 0 deletions

11
ExportService.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef EXPORTSERVICE_H
#define EXPORTSERVICE_H
#include "../models/User.h"
class ExportService {
public:
static void exportData(User* user);
};
#endif