This commit is contained in:
2023-08-12 01:39:17 +03:00
parent e92f792640
commit 79a031401a
13 changed files with 127 additions and 8 deletions

14
api/user/index.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
require_once("../_auth.php");
require_once("../_json.php");
// TODO
if ($LOGGED_IN) {
echo 1;
} else {
echo 2;
}
?>