diff --git a/ocaml/lib/schema/schema.ml b/ocaml/lib/schema/schema.ml index b10b05f..41ea7f7 100644 --- a/ocaml/lib/schema/schema.ml +++ b/ocaml/lib/schema/schema.ml @@ -1,4 +1,4 @@ -open Qol +open Utilities.Aliases type version = { major: int; minor: int; patch: int } type help = { short: string; long: string } diff --git a/ocaml/lib/system/process/fork.ml b/ocaml/lib/system/process/fork.ml index ca84c0f..81c3a37 100644 --- a/ocaml/lib/system/process/fork.ml +++ b/ocaml/lib/system/process/fork.ml @@ -1,4 +1,4 @@ -open Qol +open Utilities.Aliases let run (command: string) (arguments: string list) = match Unix.fork () with diff --git a/ocaml/lib/system/process/reader.ml b/ocaml/lib/system/process/reader.ml index 1ee05f3..f256121 100644 --- a/ocaml/lib/system/process/reader.ml +++ b/ocaml/lib/system/process/reader.ml @@ -1,4 +1,4 @@ -open Qol +open Utilities.Aliases type output = { output: string; error: string; status: string; } diff --git a/ocaml/lib/qol.ml b/ocaml/lib/utilities/aliases.ml similarity index 100% rename from ocaml/lib/qol.ml rename to ocaml/lib/utilities/aliases.ml