diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/dune | 4 | ||||
-rw-r--r-- | lib/flesh.ml | 1 | ||||
-rw-r--r-- | lib/stream.ml | 5 |
3 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,5 @@ (library (public_name flesh) - (libraries lwt)) + (libraries + lwt + portal)) diff --git a/lib/flesh.ml b/lib/flesh.ml index e69de29..8f4bd77 100644 --- a/lib/flesh.ml +++ b/lib/flesh.ml @@ -0,0 +1 @@ +module Stream = Stream diff --git a/lib/stream.ml b/lib/stream.ml new file mode 100644 index 0000000..29b6425 --- /dev/null +++ b/lib/stream.ml @@ -0,0 +1,5 @@ +open Lwt.Syntax + +let start domain : Portal.t Lwt.t = + let+ stream, push = Portal.connect domain + in stream, push |