EUS/controllers/HomeController.ts

7 lines
No EOL
160 B
TypeScript

import Controller from "./Controller";
export default class HomeController extends Controller {
public Index_Get_AllowAnonymous() {
return this.view();
}
}