gitfoss | d8c0b8e9f95a4056d0200a5edd32cec277d798f7 | app/controllers/auth/index.ts ∙ GitFOSS
.ts
TypeScript
(application/typescript)
import { default as getLoginView } from "./getLoginView";
import { default as getLogoutAction } from "./getLogoutAction";
import { default as getRegisterView } from "./getRegisterView";
import { default as postLoginAction } from "./postLoginAction";
import { default as postRegisterAction } from "./postRegisterAction";

export const AuthController = {
  getLoginView,
  getLogoutAction,
  getRegisterView,
  postLoginAction,
  postRegisterAction,
};