mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
3e3779498e
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`).
11 lines
319 B
Python
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"]
|