snix/src/Main.hs
William Carroll 475f62fb16 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.
2020-07-27 15:22:22 +01:00

7 lines
247 B
Haskell

module Main where
--------------------------------------------------------------------------------
import qualified App
--------------------------------------------------------------------------------
main :: IO ()
main = App.run "../db.sqlite3"