init repo

This commit is contained in:
2025-09-11 13:41:58 +02:00
commit b4bb3e3eed
13 changed files with 178 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import logger from 'log'
import {Ok} from './helpers'
// TODO : re-export types used to describe schema
const log = logger('config')
export async function parse<S>(schema: S): Promise<Ok<unknown>> {
log.info("Parse configuration from env")
// TODO : Read config from env
// TODO : maybe double check config
return {ok: false}
}