6 lines
114 B
Python
6 lines
114 B
Python
"""Persistence layer (SQLite)."""
|
|
|
|
from db.connection import get_conn, init_db
|
|
|
|
__all__ = ["get_conn", "init_db"]
|