7 lines
101 B
Python
7 lines
101 B
Python
from db import session
|
|
|
|
|
|
class Repo:
|
|
def __init__(self):
|
|
self.conn, self.cur = session()
|