If I want to create a connection pool for ```asyncpg``` like this await asyncpg.create_pool(database="dbname", user="username", password="dbpw", max_inactive_connection_lifetime=3) How do I persist and utilise it from within the databases wrapper? Thanks
If I want to create a connection pool for
asyncpglike thisawait asyncpg.create_pool(database="dbname",
user="username",
password="dbpw",
max_inactive_connection_lifetime=3)
How do I persist and utilise it from within the databases wrapper?
Thanks