diff options
author | Clombrong <cromblong@egregore.fun> | 2025-08-14 23:46:52 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-08-15 00:13:57 +0200 |
commit | e4e8a81f030dc599b1d5dc84b9725667c3872124 (patch) | |
tree | a7b14daa695e1d5521b07d0fb5a3ff73a225b62b /test/hello.ml | |
parent | 1283666e6cc07c3149667dfb3218a0dbae62abd6 (diff) |
feat(session): add t type for session data
Diffstat (limited to 'test/hello.ml')
-rw-r--r-- | test/hello.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello.ml b/test/hello.ml index e91f65f..005db94 100644 --- a/test/hello.ml +++ b/test/hello.ml @@ -16,7 +16,7 @@ let main = } in let waiter, wakener = Lwt.wait () in - try%lwt let* state, update = create config.sasl.jid.domainpart config in + try%lwt let* { state; update } = create config.sasl.jid.domainpart config in S.map (function | Connected (portal, Logged_in _) -> portal.push None; Lwt.wakeup wakener () |