11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
export { db } from "./client"
|
|
export {
|
|
createPost,
|
|
deletePost,
|
|
getPostById,
|
|
listPosts,
|
|
registerPostCrudAuditHook,
|
|
updatePost,
|
|
} from "./posts"
|
|
export { isAdminSelfRegistrationEnabled, setAdminSelfRegistrationEnabled } from "./settings"
|