from asyncpg.connection import Connection class Repo: """Db abstraction layer""" def __init__(self, conn: Connection): self.conn = conn