diff options
author | Marius Peter <marius.peter@tutanota.com> | 2025-01-26 19:18:58 +0100 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2025-01-26 19:18:58 +0100 |
commit | 58e910f355589f48150f16f264b5014956718548 (patch) | |
tree | 7212ef2b790e493474aba7364cef97a58f702c61 /lib/helpers | |
parent | 36c8f580659be0586413e3bfc891173fff3edd21 (diff) |
Remove all helper modules.
Now, only God can help me.
Diffstat (limited to 'lib/helpers')
-rw-r--r-- | lib/helpers/dune | 5 | ||||
-rw-r--r-- | lib/helpers/file_helpers.ml | 6 |
2 files changed, 0 insertions, 11 deletions
diff --git a/lib/helpers/dune b/lib/helpers/dune deleted file mode 100644 index f04f60c..0000000 --- a/lib/helpers/dune +++ /dev/null @@ -1,5 +0,0 @@ -(library - (name helpers) - (public_name ogit.helpers) - (libraries unix views) - (modules html_helpers file_helpers)) diff --git a/lib/helpers/file_helpers.ml b/lib/helpers/file_helpers.ml deleted file mode 100644 index a1b5372..0000000 --- a/lib/helpers/file_helpers.ml +++ /dev/null @@ -1,6 +0,0 @@ -let list_files dir = - try - Array.to_list (Sys.readdir dir) - |> List.map (fun file -> Printf.sprintf "<li>%s</li>" file) - |> String.concat "" - with _ -> "<li>Error: Unable to read directory</li>" |