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/scaffold/__init__.py
4
5"""oct.scaffold — project-scaffolding helpers.
6
7The CLI entry point (:func:`oct.cli.scaffold`) is a thin dispatcher; the
8real work lives in :func:`oct.scaffold.oct_scaffold.run_scaffold`.
9"""
10
11from oct.scaffold.oct_scaffold import ScaffoldResult, run_scaffold
12
13__all__ = ["ScaffoldResult", "run_scaffold"]