Moved files to new directories to allow for more logical organization (and for easier use on my side).

This commit is contained in:
2023-05-13 13:17:50 -05:00
parent 8c686409be
commit 0bfb668e95
5 changed files with 63 additions and 57 deletions

5
api/crontab_stats.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
echo "Total Crontabs:<br>";
$crontab_counts=shell_exec('./count-crontabs.sh');
echo "$crontab_counts";
?>