summaryrefslogtreecommitdiff
path: root/lib/util.ml
diff options
context:
space:
mode:
authorยท๐‘‘๐‘ด๐‘•๐‘‘๐‘ฉ๐‘ค2025-12-11 20:48:32 +0000
committerยท๐‘‘๐‘ด๐‘•๐‘‘๐‘ฉ๐‘ค2025-12-11 20:48:32 +0000
commit0d7fa712f20bc02d20153e78704f59c89f8a5361 (patch)
tree5ddd51057085c787d48313d19777a4e28e1dc36f /lib/util.ml
parent4a5eecec6f54f2049d01e28ef220a98ef71f5896 (diff)
downloadnixtaml-0d7fa712f20bc02d20153e78704f59c89f8a5361.tar
nixtaml-0d7fa712f20bc02d20153e78704f59c89f8a5361.tar.gz
nixtaml-0d7fa712f20bc02d20153e78704f59c89f8a5361.tar.bz2
nixtaml-0d7fa712f20bc02d20153e78704f59c89f8a5361.tar.lz
nixtaml-0d7fa712f20bc02d20153e78704f59c89f8a5361.tar.xz
nixtaml-0d7fa712f20bc02d20153e78704f59c89f8a5361.tar.zst
nixtaml-0d7fa712f20bc02d20153e78704f59c89f8a5361.zip
add URI module
Diffstat (limited to 'lib/util.ml')
-rw-r--r--lib/util.ml6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/util.ml b/lib/util.ml
index 985fc43..02b2ea2 100644
--- a/lib/util.ml
+++ b/lib/util.ml
@@ -189,12 +189,6 @@ module These = struct
these f g (fun a b -> h (f a) (g b))
end
-module URI = struct
- let jsont : Uri.t Jsont.t =
- Jsont.string
- |> Jsont.map ~kind: "URI" ~dec: Uri.of_string ~enc: Uri.to_string
-end
-
module Non_empty_list = struct
type 'a t =
('a * 'a list)