Initialize repository snapshot
This commit is contained in:
27
engines/console/__init__.py
Normal file
27
engines/console/__init__.py
Normal file
@@ -0,0 +1,27 @@
|
||||
"""
|
||||
VaultMesh Console Engine
|
||||
|
||||
AI agent session management, code operations, and sovereign development.
|
||||
"""
|
||||
|
||||
from .receipts import (
|
||||
ConsoleReceiptEmitter,
|
||||
emit_console_receipt,
|
||||
ReceiptType,
|
||||
get_emitter,
|
||||
)
|
||||
from .approvals import (
|
||||
ApprovalManager,
|
||||
ApprovalRequest,
|
||||
get_approval_manager,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"ConsoleReceiptEmitter",
|
||||
"emit_console_receipt",
|
||||
"ReceiptType",
|
||||
"get_emitter",
|
||||
"ApprovalManager",
|
||||
"ApprovalRequest",
|
||||
"get_approval_manager",
|
||||
]
|
||||
Reference in New Issue
Block a user