summaryrefslogtreecommitdiff
path: root/editor/actions/event.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2022-02-07 15:49:48 +0100
committerSébastien Dailly <sebastien@dailly.me>2022-02-07 16:43:33 +0100
commit54f6e68c051afec0d20c349352feee5356e11b35 (patch)
treeb9cf8c7c64538728c9f6e864896c00d32641b834 /editor/actions/event.ml
parentfe2cced55e1b44dbae57e55fe0f459c85e7369cb (diff)
Update editor code
Diffstat (limited to 'editor/actions/event.ml')
-rwxr-xr-xeditor/actions/event.ml9
1 files changed, 0 insertions, 9 deletions
diff --git a/editor/actions/event.ml b/editor/actions/event.ml
deleted file mode 100755
index 21e3d3a..0000000
--- a/editor/actions/event.ml
+++ /dev/null
@@ -1,9 +0,0 @@
-module type Handler = sig
-
- type t
-
- val apply: t -> State.t -> State.t
-
-end
-
-type t = E : 'a * (module Handler with type t = 'a) -> t