Om-wrapped PostgreSQL operations for PureScript.
spago install yoga-postgres-om yoga-om-core yoga-om-layerimport Yoga.Postgres.Om as PG
import Yoga.Postgres.OmLayer as PGLayer
main = launchAff_ do
runOm (PGLayer.live config) do
rows <- PG.query "SELECT * FROM users" []
-- Use PostgreSQL operations without manually passing connectionSee yoga-postgres for raw bindings.
MIT