spamhandler/spamhandler/index.mts

9 lines
231 B
TypeScript

import { readFileSync } from 'fs'
import { parse as YamlParse } from 'yaml'
export function run() {
const content = readFileSync('config.yaml', 'utf8')
const CONFIG: object = YamlParse(content)
console.debug(CONFIG)
}