# Functions
Config retrieves the postgres DB connection url from environment variable named `BARK_DATABASE_URL`.
InitDb : InitDB returns error (if any) encountered while trying to establish a connection to the postgres DB instance.
OpenDb : OpenDB returns a pointer to the `BarkPostgresDb` object.
# Structs
BarkPostgresDb wraps the *pgxpool.Pool in a custom struct to use it as a receiver for query functions.