1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00
appwrite/app/cli.php

16 lines
249 B
PHP
Raw Normal View History

2020-07-29 07:48:51 +12:00
<?php
2022-05-24 02:54:50 +12:00
require_once __DIR__ . '/init.php';
require_once __DIR__ . '/controllers/general.php';
2020-07-29 07:48:51 +12:00
2022-07-08 14:27:06 +12:00
use Appwrite\Task\Tasks;
2022-04-10 21:38:22 +12:00
use Utopia\Database\Validator\Authorization;
Authorization::disable();
2020-07-29 07:48:51 +12:00
2022-07-08 14:36:54 +12:00
$tasks = new Tasks();
$tasks
->init()
->run();
2020-07-29 07:48:51 +12:00