diff options
author | William Carroll <wpcarro@gmail.com> | 2020-07-27T14·22+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-07-27T14·22+0100 |
commit | 475f62fb16fb29e55548cc8b238caea8bf60bd8f (patch) | |
tree | 8e97b206c86c7022443b8e09f42aad8a0b0b8a60 /src/Main.hs | |
parent | c38814d7a155e5ced75b088b29cafa71a4a76de0 (diff) |
Prefer SQLite.Simple to Persistent
In the spirit of walking crawling before I walk, I'm preferring the less powerful SQLite.Simple library to the more powerful (but mystifying) Persistent library.
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs index ea2ad2621bd9..de40b3225e4a 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -4,4 +4,4 @@ import qualified App -------------------------------------------------------------------------------- main :: IO () -main = App.run "sqlite.db" +main = App.run "../db.sqlite3" |