fix namespace

This commit is contained in:
Damodar Lohani
2025-12-15 02:20:10 +00:00
parent 69ad4ae930
commit 2d3e34fd5a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -247,7 +247,7 @@ App::post('/v1/projects')
}
if ($create || $projectTables) {
$adapter = new \Utopia\Audit\Adapters\Database($dbForProject);
$adapter = new \Utopia\Audit\Adapter\Database($dbForProject);
$audit = new Audit($adapter);
$audit->setup();
}
+1 -1
View File
@@ -4,7 +4,7 @@ namespace Appwrite\Platform\Workers;
use Exception;
use Throwable;
use Utopia\Audit\Adapters\Database as AdapterDatabase;
use Utopia\Audit\Adapter\Database as AdapterDatabase;
use Utopia\Audit\Audit;
use Utopia\CLI\Console;
use Utopia\Database\Document;