universal-ctags: Finish migrating the updater

This commit is contained in:
2023-09-27 19:58:16 +02:00
parent 7c499bd3f7
commit 69b24c6cfa
4 changed files with 20 additions and 7 deletions

View File

@ -20,6 +20,7 @@ data Settings = Settings
data MaintainerSettings = MaintainerSettings
{ name :: !Text
, email :: !Text
, signature :: !Bool
} deriving (Eq, Show)
settingsCodec :: Toml.TomlCodec Settings
@ -35,3 +36,4 @@ maintainerSettingsCodec :: Toml.TomlCodec MaintainerSettings
maintainerSettingsCodec = MaintainerSettings
<$> Toml.text "name" .= name
<*> Toml.text "email" .= email
<*> Toml.bool "signature" .= signature