usage updates

This commit is contained in:
shimon 2024-02-13 16:27:01 +02:00
parent 219b28e9bf
commit e1e5f5d96b

View file

@ -14,7 +14,7 @@ use Appwrite\Platform\Workers\Builds;
use Appwrite\Platform\Workers\Deletes; use Appwrite\Platform\Workers\Deletes;
use Appwrite\Platform\Workers\Hamster; use Appwrite\Platform\Workers\Hamster;
use Appwrite\Platform\Workers\Usage; use Appwrite\Platform\Workers\Usage;
use Appwrite\Platform\Workers\UsageHook; use Appwrite\Platform\Workers\UsageDump;
use Appwrite\Platform\Workers\Migrations; use Appwrite\Platform\Workers\Migrations;
class Workers extends Service class Workers extends Service
@ -33,7 +33,7 @@ class Workers extends Service
->addAction(Builds::getName(), new Builds()) ->addAction(Builds::getName(), new Builds())
->addAction(Deletes::getName(), new Deletes()) ->addAction(Deletes::getName(), new Deletes())
->addAction(Hamster::getName(), new Hamster()) ->addAction(Hamster::getName(), new Hamster())
->addAction(UsageHook::getName(), new UsageHook()) ->addAction(UsageDump::getName(), new UsageDump())
->addAction(Usage::getName(), new Usage()) ->addAction(Usage::getName(), new Usage())
->addAction(Migrations::getName(), new Migrations()) ->addAction(Migrations::getName(), new Migrations())