Files
revng-revng/python/revng/project/__init__.py
T
Giacomo Vercesi 3e3779498e Implement python interface for revng
Add a python interface (`revng.profile`) for interacting with the rev.ng
infrastructure as a whole; either through the CLI (`CLIProject`) or the
GraphQL API (`DaemonProject`).
2025-05-07 10:48:51 +02:00

11 lines
319 B
Python

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
from .cli_project import CLIProject
from .daemon_project import DaemonProject
from .local_daemon_project import LocalDaemonProject
from .project import Project
__all__ = ["Project", "CLIProject", "DaemonProject", "LocalDaemonProject"]