mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-26 16:08:13 -05:00
efeadb8fb8
First version of PicList. In album, you can delete remote file now. Add picBed management function.
11 lines
276 B
TypeScript
11 lines
276 B
TypeScript
/* 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
|