1
0
Fork 0
mirror of synced 2024-09-06 12:51:43 +12:00

remove cloud related scripts

This commit is contained in:
shimon 2024-01-09 15:44:56 +02:00
parent 85950868f2
commit 4b23440c2d

View file

@ -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())
;
}
}