diff options
Diffstat (limited to 'src/Model/Path.hs')
-rw-r--r-- | src/Model/Path.hs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Model/Path.hs b/src/Model/Path.hs index d34716c..3256638 100644 --- a/src/Model/Path.hs +++ b/src/Model/Path.hs @@ -1,10 +1,10 @@ module Model.Path - ( birthdate - , config + ( event + , conf ) where -birthdate :: FilePath -birthdate = "birthdates.csv" +event :: FilePath +event = "events" -config :: FilePath -config = "config.txt" +conf :: FilePath +conf = "application.conf" |