diff options
author | Reto Brunner <reto@labrat.space> | 2020-09-10 07:50:30 +0200 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-09-10 07:50:30 +0200 |
commit | 9d801414084470340f4cc1a9e0597d0a8d792587 (patch) | |
tree | 5116ee1eedc0311dc8b43f2cd48954a7b109feb0 | |
parent | 504417b6709ba8ec74016ad00eaa7fcec9deb6ef (diff) | |
download | aerc-9d801414084470340f4cc1a9e0597d0a8d792587.tar.gz |
Remove unused Simulator interface
-rw-r--r-- | lib/ui/interfaces.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/ui/interfaces.go b/lib/ui/interfaces.go index c12bdb7..1f2f284 100644 --- a/lib/ui/interfaces.go +++ b/lib/ui/interfaces.go @@ -31,11 +31,6 @@ type Beeper interface { OnBeep(func() error) } -type Simulator interface { - // Queues up the given input events for simulation - Simulate(events []tcell.Event) -} - type DrawableInteractive interface { Drawable Interactive |