EUS/controllers/HomeController.ts

7 lines
156 B
TypeScript
Raw Normal View History

2025-01-01 22:03:59 +00:00
import Controller from "./Controller";
export default class HomeController extends Controller {
public AllowAnonymous_Index() {
return this.view();
}
}