From 4b23440c2ddb2c9a8527223f7611d68837df934e Mon Sep 17 00:00:00 2001 From: shimon Date: Tue, 9 Jan 2024 15:44:56 +0200 Subject: [PATCH] remove cloud related scripts --- src/Appwrite/Platform/Services/Workers.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Appwrite/Platform/Services/Workers.php b/src/Appwrite/Platform/Services/Workers.php index c5a0514760..40366f2313 100644 --- a/src/Appwrite/Platform/Services/Workers.php +++ b/src/Appwrite/Platform/Services/Workers.php @@ -12,7 +12,6 @@ use Appwrite\Platform\Workers\Databases; use Appwrite\Platform\Workers\Functions; use Appwrite\Platform\Workers\Builds; use Appwrite\Platform\Workers\Deletes; -use Appwrite\Platform\Workers\Hamster; use Appwrite\Platform\Workers\Migrations; class Workers extends Service @@ -31,8 +30,6 @@ class Workers extends Service ->addAction(Builds::getName(), new Builds()) ->addAction(Deletes::getName(), new Deletes()) ->addAction(Migrations::getName(), new Migrations()) - ->addAction(Hamster::getName(), new Hamster()) - ; } }