diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-19 12:08:19 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-19 16:51:09 +0200 |
commit | 28d123ff109663ac8849ef0c83f6f2e22bdcd88c (patch) | |
tree | dcab029af8d93089055db2b1f1a198ae3227d352 /lib | |
parent | 74e505159a78e72c817f48131e5267b1e3388400 (diff) |
feat: new module Xml
Diffstat (limited to 'lib')
-rw-r--r-- | lib/flesh.ml | 1 | ||||
-rw-r--r-- | lib/xml.ml | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lib/flesh.ml b/lib/flesh.ml index d8aca97..476d09c 100644 --- a/lib/flesh.ml +++ b/lib/flesh.ml @@ -1,2 +1,3 @@ module Stream = Stream module Sasl = Sasl +module Xml = Xml diff --git a/lib/xml.ml b/lib/xml.ml new file mode 100644 index 0000000..8b99049 --- /dev/null +++ b/lib/xml.ml @@ -0,0 +1,6 @@ +type element = { + namespace : string; + local_name : string; + attributes : (string * string) list; + children : (element, string) Either.t list; + } |