RAG/database/__init__.py

8 lines
93 B
Python

"""
Database module for RAG system
"""
from .sync import MySQLSync
__all__ = ["MySQLSync"]