summaryrefslogtreecommitdiff
path: root/src/vyconf_config.mli
blob: bd7065277bcc1636fb3075f69045562aa66de1e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
type vyconf_config = {
    app_name: string;
    data_dir: string;
    program_dir: string;
    config_dir: string;
    primary_config: string;
    fallback_config: string;
    socket: string;
    pid_file: string;
    log_file: string option;
}

val load : string -> (vyconf_config, string) Result.result

val dump : vyconf_config -> string