aboutsummaryrefslogtreecommitdiff
path: root/lib/jid.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/jid.ml')
-rw-r--r--lib/jid.ml5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/jid.ml b/lib/jid.ml
new file mode 100644
index 0000000..19759eb
--- /dev/null
+++ b/lib/jid.ml
@@ -0,0 +1,5 @@
+type t = {
+ localpart : string option;
+ domainpart : string;
+ resourcepart : string option;
+ }