gitfoss | e6d0244d625614a1cf18698b44f8c0fcbf19cfb6 | app/controllers/user/index.ts ∙ GitFOSS
.ts
TypeScript
(application/typescript)
import { default as getUserDashboardView } from "./getUserDashboardView";
import { default as getUserDetailsView } from "./getUserDetailsView";

const getUserSSHKeyAddView = async () => {}; // Todo: implement
const postUserSSHKeyAddAction = async () => {}; // Todo: implement

export const UserController = {
  getUserDashboardView,
  getUserDetailsView,
  getUserSSHKeyAddView,
  postUserSSHKeyAddAction,
};