OCaml: Rename Qol module to Utilities.Aliases

This commit is contained in:
Juno Takano 2025-04-13 19:46:27 -03:00
commit fab7e2425a
4 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
open Qol
open Utilities.Aliases
type version = { major: int; minor: int; patch: int }
type help = { short: string; long: string }

View file

@ -1,4 +1,4 @@
open Qol
open Utilities.Aliases
let run (command: string) (arguments: string list) =
match Unix.fork () with

View file

@ -1,4 +1,4 @@
open Qol
open Utilities.Aliases
type output = { output: string; error: string; status: string; }