community / src /initFolders.mts
jbilcke-hf's picture
jbilcke-hf HF staff
initial commit
b2d7d99
raw
history blame contribute delete
229 Bytes
import {
postDirFilePath
} from "./config.mts"
import { createDirIfNeeded } from "./utils/createDirIfNeeded.mts"
export const initFolders = () => {
console.log(`initializing folders..`)
createDirIfNeeded(postDirFilePath)
}