.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,
};