cognee/cognee/infrastructure/databases/relational/ModelBase.py
Daniel Molnar b5ebed1f7d
Docstring infrastructure. (#880)
<!-- .github/pull_request_template.md -->

## Description
<!-- Provide a clear description of the changes in this PR -->

## DCO Affirmation
I affirm that all code in every commit of this pull request conforms to
the terms of the Topoteretes Developer Certificate of Origin.
2025-05-28 17:47:31 +02:00

12 lines
304 B
Python

from sqlalchemy.orm import DeclarativeBase
class Base(DeclarativeBase):
"""
Represents a base class for declarative models using SQLAlchemy.
The Base class provides the foundation for creating ORM-mapped classes and manages the
mapping of classes to database tables.
"""
pass