e949/api/user/index.php

14 lines
127 B
PHP
Raw Normal View History

2023-08-12 04:09:17 +05:30
<?php
require_once("../_auth.php");
require_once("../_json.php");
// TODO
if ($LOGGED_IN) {
echo 1;
} else {
echo 2;
}
?>