Luccas Mateus de Medeiros Gomes 91c76c213c [@portaljs/components][xl] - @portaljs/ckan package
+ Accompaning example using said package
+ Removed the "example" from all the examples names
2023-05-23 14:13:36 -03:00

15 lines
254 B
TypeScript

import { MarkdownDB } from "@flowershow/markdowndb";
const dbPath = "markdown.db";
const client = new MarkdownDB({
client: "sqlite3",
connection: {
filename: dbPath,
},
});
const clientPromise = client.init();
export default clientPromise;