PicList/src/main/manage/Main.ts

11 lines
276 B
TypeScript
Raw Normal View History

/* eslint-disable */
import { manageDbChecker } from './datastore/dbChecker'
import { ManageApi } from './manageApi'
manageDbChecker()
const getManageApi = (picBedName: string = 'placeholder'): ManageApi => {
return new ManageApi(picBedName)
}
export default getManageApi