Option C Tools
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3# oct/audit/__init__.py
4
5"""
6FS-539 / FS-501 (stub) — ``oct audit`` subpackage.
7
8The full audit suite (schema drift, scaffold age, doc/version mismatch,
9MCP readiness) lands in Phase 6. This stub exposes only the
10``oc_status.json`` readout that ``CLAUDE.md``'s compliance probe and CI
11scripts consume.
12"""
13
14__all__ = ["audit_group"]
15
16
17def __getattr__(name: str):
18 if name == "audit_group":
19 from oct.audit.oct_audit import audit as _audit
20 return _audit
21 raise AttributeError(f"module 'oct.audit' has no attribute {name!r}")
__getattr__(str name)
Definition __init__.py:17