diff options
Diffstat (limited to 'lib/config.ml')
| -rw-r--r-- | lib/config.ml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/config.ml b/lib/config.ml new file mode 100644 index 0000000..4ebf436 --- /dev/null +++ b/lib/config.ml | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | open Base | ||
| 2 | |||
| 3 | type config = { | ||
| 4 | files : string list; | ||
| 5 | } | ||
| 6 | type t = config | ||
| 7 | |||
| 8 | let parse args = | ||
| 9 | { files = List.(of_array args |> tl_exn) } | ||
