From 70eb56a38863e093408859cd152de7c742beb829 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Mon, 8 Apr 2024 05:25:55 +0000 Subject: [PATCH] refactor module --- src/Appwrite/Platform/Appwrite.php | 1 + src/Appwrite/Platform/{ => Modules}/Core.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) rename src/Appwrite/Platform/{ => Modules}/Core.php (64%) diff --git a/src/Appwrite/Platform/Appwrite.php b/src/Appwrite/Platform/Appwrite.php index 289abd9429..fac55635d3 100644 --- a/src/Appwrite/Platform/Appwrite.php +++ b/src/Appwrite/Platform/Appwrite.php @@ -4,6 +4,7 @@ namespace Appwrite\Platform; use Appwrite\Platform\Services\Tasks; use Appwrite\Platform\Services\Workers; +use Appwrite\Platform\Modules\Core; use Utopia\Platform\Platform; class Appwrite extends Platform diff --git a/src/Appwrite/Platform/Core.php b/src/Appwrite/Platform/Modules/Core.php similarity index 64% rename from src/Appwrite/Platform/Core.php rename to src/Appwrite/Platform/Modules/Core.php index 1081a9800f..ea73e07690 100644 --- a/src/Appwrite/Platform/Core.php +++ b/src/Appwrite/Platform/Modules/Core.php @@ -1,6 +1,6 @@