mirror of
https://github.com/ksyasuda/dotfiles.git
synced 2026-02-27 12:22:43 -08:00
14 lines
378 B
Python
14 lines
378 B
Python
"""
|
|
Xcode build automation module.
|
|
|
|
Provides structured, modular access to xcodebuild and xcresult functionality.
|
|
"""
|
|
|
|
from .builder import BuildRunner
|
|
from .cache import XCResultCache
|
|
from .config import Config
|
|
from .reporter import OutputFormatter
|
|
from .xcresult import XCResultParser
|
|
|
|
__all__ = ["BuildRunner", "Config", "OutputFormatter", "XCResultCache", "XCResultParser"]
|