├── README.md ├── hasql-tutorial1.cabal ├── library └── HasqlTutorial1 │ ├── Prelude.hs │ ├── Session.hs │ ├── Statement.hs │ └── Transaction.hs └── schema-migrations └── 1.psql /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikita-volkov/hasql-tutorial1/HEAD/README.md -------------------------------------------------------------------------------- /hasql-tutorial1.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikita-volkov/hasql-tutorial1/HEAD/hasql-tutorial1.cabal -------------------------------------------------------------------------------- /library/HasqlTutorial1/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikita-volkov/hasql-tutorial1/HEAD/library/HasqlTutorial1/Prelude.hs -------------------------------------------------------------------------------- /library/HasqlTutorial1/Session.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikita-volkov/hasql-tutorial1/HEAD/library/HasqlTutorial1/Session.hs -------------------------------------------------------------------------------- /library/HasqlTutorial1/Statement.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikita-volkov/hasql-tutorial1/HEAD/library/HasqlTutorial1/Statement.hs -------------------------------------------------------------------------------- /library/HasqlTutorial1/Transaction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikita-volkov/hasql-tutorial1/HEAD/library/HasqlTutorial1/Transaction.hs -------------------------------------------------------------------------------- /schema-migrations/1.psql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikita-volkov/hasql-tutorial1/HEAD/schema-migrations/1.psql --------------------------------------------------------------------------------