summaryrefslogtreecommitdiff
path: root/src/connector.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/connector.ml')
-rw-r--r--src/connector.ml6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/connector.ml b/src/connector.ml
new file mode 100644
index 0000000..d00d036
--- /dev/null
+++ b/src/connector.ml
@@ -0,0 +1,6 @@
1type t = Squared | Rounded
2
3let of_kind (k : t) =
4 match k with
5 | Squared -> ("└", "┐", "┘", "┌")
6 | Rounded -> ("╰", "╮", "╯", "╭")