@pierrehrt/create-content-builder
Version:
CLI tool to create content builder projects
12 lines (9 loc) • 363 B
text/typescript
import { configManager } from "@/lib/config";
export async function getContent() {
const { database } = configManager.getConfig();
// Implementation will be added based on database selection
}
export async function saveContent(content: any) {
const { database } = configManager.getConfig();
// Implementation will be added based on database selection
}