aboutsummaryrefslogtreecommitdiffstats
path: root/app/Data
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-02-29 04:11:10 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-14 07:07:39 +0100
commitf92c593a3d2c4bdb023fdd834b6e8c874d063cc8 (patch)
treeb506bb61f4951207aa1aff04080fd3d7874927c3 /app/Data
parent941f0d4ccb688d42c0438e05051ed78a410431b6 (diff)
feat: add `review` command
Prototype of the `review` command, cf. `anissue review -h`. Also adds the `status` command.
Diffstat (limited to 'app/Data')
-rw-r--r--app/Data/List/NonEmpty/Zipper/Extra.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Data/List/NonEmpty/Zipper/Extra.hs b/app/Data/List/NonEmpty/Zipper/Extra.hs
new file mode 100644
index 0000000..638a9bd
--- /dev/null
+++ b/app/Data/List/NonEmpty/Zipper/Extra.hs
@@ -0,0 +1,8 @@
+{-# OPTIONS_GHC -fno-warn-orphans #-}
+
+module Data.List.NonEmpty.Zipper.Extra where
+
+import Data.Binary (Binary)
+import Data.List.NonEmpty.Zipper (Zipper)
+
+instance Binary a => Binary (Zipper a)