feat(server): modularize backend and admin console
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
type Result = {
|
||||
success: boolean;
|
||||
data: Array<any>;
|
||||
};
|
||||
|
||||
export const getAsyncRoutes = () => {
|
||||
return Promise.resolve<Result>({
|
||||
success: true,
|
||||
data: []
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user