diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-10-14 14:27:26 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-10-16 10:28:32 +0200 |
commit | cd2777c6287eab41728c5368c7980b6520d8a8ea (patch) | |
tree | e45d7911bc733dabde439e5d4cc5687bdec1d295 /app/Issue/Tag.hs | |
parent | 42fc137f64aab9242aab9bdb2f5da0a6d892f09c (diff) |
refactor: add language extensions to Cabal file
Ditches `ghci` in favor of `cabal repl`.
Diffstat (limited to 'app/Issue/Tag.hs')
-rw-r--r-- | app/Issue/Tag.hs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/app/Issue/Tag.hs b/app/Issue/Tag.hs index 7147cb1..9c0c98f 100644 --- a/app/Issue/Tag.hs +++ b/app/Issue/Tag.hs @@ -1,14 +1,9 @@ -{-# LANGUAGE LambdaCase #-} -{-# LANGUAGE OverloadedStrings #-} -{-# LANGUAGE ViewPatterns #-} -{-# LANGUAGE DeriveAnyClass #-} - module Issue.Tag (Tag (..), extractTags, internalTags) where +import Data.Binary (Binary) import Data.Maybe (catMaybes) import Data.Text (Text) import Data.Text qualified as T -import Data.Binary (Binary) import GHC.Generics (Generic) data Tag = Tag Text Text deriving (Show, Generic, Binary) |