gabriel / musehub public
models.py python
23 lines 598 B
cd448303 Initial extraction of MuseHub from maestro monorepo. Gabriel Cardona <gabriel@tellurstori.com> 7d ago
1 """Re-exports of Muse CLI ORM models for MuseHub compatibility.
2
3 The canonical definitions now live in maestro.db.muse_cli_models.
4 This module exists only so that MuseHub code and tests can keep importing
5 from the original path while MuseHub extraction is pending.
6
7 TODO(musehub-extraction): remove when MuseHub is extracted to its own repo.
8 """
9 from __future__ import annotations
10
11 from musehub.db.muse_cli_models import (
12 MuseCliObject,
13 MuseCliSnapshot,
14 MuseCliCommit,
15 MuseCliTag,
16 )
17
18 __all__ = [
19 "MuseCliObject",
20 "MuseCliSnapshot",
21 "MuseCliCommit",
22 "MuseCliTag",
23 ]