aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/flesh.ml1
-rw-r--r--lib/xml.ml6
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;
+ }