summaryrefslogtreecommitdiff
path: root/lib/config.ml
blob: 4ebf4367c7ddcef80c53780e40aa536c883819e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
open Base

type config = {
    files : string list;
}
type t = config

let parse args =
    { files = List.(of_array args |> tl_exn) }