diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-21 05:35:00 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-25 07:45:59 +0100 |
commit | f83b424bf70b7b14b0268aeeafe1b3483fced49f (patch) | |
tree | 348a60e815f4bee492f58dea903ebc380029d61f /app/Settings.hs | |
parent | fc0afaaa273f5b5d3696df87d70d5347a13bb9ac (diff) |
chore: Git -> Backend
Diffstat (limited to 'app/Settings.hs')
-rw-r--r-- | app/Settings.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Settings.hs b/app/Settings.hs index c439b65..2d3c204 100644 --- a/app/Settings.hs +++ b/app/Settings.hs @@ -4,10 +4,10 @@ module Settings ) where +import Backend qualified import Data.Aeson qualified as A import Data.Yaml (decodeFileThrow) import GHC.Generics (Generic) -import Git qualified import System.Directory (doesFileExist) import System.Environment.XDG.BaseDir (getSystemConfigFiles, getUserConfigFile) import System.FilePath ((</>)) @@ -40,5 +40,5 @@ readSettings = <$> sequence [ getSystemConfigFiles "anissue" "settings.yaml", ((: []) <$> getUserConfigFile "anissue" "settings.yaml"), - ((: []) . (</> "anissue.yaml")) <$> Git.getRootDir + ((: []) . (</> "anissue.yaml")) <$> Backend.getRootDir ] |