This repository has been archived on 2024-03-08. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
website-old/app/controllers/APIController.php
2023-02-17 14:52:36 +01:00

18 lines
No EOL
296 B
PHP

<?php
namespace app\controllers;
class APIController
{
public function git_pull(): void
{
run_script("git-pull");
clear_cache();
echo 'done';
}
public function dependencies(): void {
run_script("dependencies", ROOT);
echo 'done';
}
}