Coverage for  / home / runner / work / bijux-cli / bijux-cli / src / bijux_cli / core / bootstrap.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.2, created at 2026-01-26 17:59 +0000

1# SPDX-License-Identifier: Apache-2.0 

2# Copyright © 2025 Bijan Mousavi 

3 

4"""Thin wrapper around the bootstrap implementation.""" 

5 

6from __future__ import annotations 

7 

8from bijux_cli.core.bootstrap_flow import main 

9from bijux_cli.core.intent import split_command_args 

10 

11_split_command_args = split_command_args 

12 

13__all__ = ["main", "split_command_args", "_split_command_args"]