diff options
| author | Adelyn Breelove <[email protected]> | 2018-12-12 15:23:14 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2018-12-12 15:23:14 -0700 |
| commit | c046760eb599e42226c683aecbe33753dfc4d500 (patch) | |
| tree | 69b2be155e7dfc52710cb5b7700c31fab633896c /lib/dispatch.ml | |
| parent | Work on event dispatch and add model derives (diff) | |
| download | disml-c046760eb599e42226c683aecbe33753dfc4d500.tar.xz disml-c046760eb599e42226c683aecbe33753dfc4d500.zip | |
Complete event dispatch
Diffstat (limited to 'lib/dispatch.ml')
| -rw-r--r-- | lib/dispatch.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dispatch.ml b/lib/dispatch.ml index c75dc26..65c84ef 100644 --- a/lib/dispatch.ml +++ b/lib/dispatch.ml @@ -1,6 +1,6 @@ open Core -module Make(H : S.Handler) = struct +module Make(H : S.Handler) : S.Dispatch = struct type dispatch_event = | HELLO of Yojson.Safe.json | READY of Yojson.Safe.json |