gitfoss | d68cfb1c7469db8b40b6e1ad8119cd51eea0071c | app/controllers/auth/index.ts ∙ GitFOSS

k / gitfoss

Files

Forked Fromethicdevs / gitfoss
Fork0
~app/controllers/auth/index.ts
.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,
};