gitfoss-fork | 21028715606564d66daa43f9f628d182480d6b6e | 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,
};