-
root authored15ce9b94
Forked from
IF3110 / TugasBesar1_2017
2 commits ahead of the upstream repository.
MainController.php 214 B
<?php
class MainController {
public static function LoginHandler() {
echo "This is login handler";
}
public static function DefaultHandler() {
echo "This is default handler";
}
}