2020-04-29 17:37:45 +08:00
|
|
|
<?php
|
|
|
|
# 登入
|
|
|
|
$router->post('login', '\catchAdmin\login\controller\Index@login');
|
2020-05-18 10:12:33 +08:00
|
|
|
$router->post('logout', '\catchAdmin\login\controller\Index@logout');
|
2020-05-18 13:41:46 +08:00
|
|
|
$router->post('refresh/token', '\catchAdmin\login\controller\Index@refreshToken');
|
2020-04-29 17:37:45 +08:00
|
|
|
|