gitfoss | 19e345f2aad3515b33b9c6eef8d29ba884178fe0 | 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,
};