debian-forge/osbuild/__init__.py
Tom Gundersen 679b79c5e5 osbuild: split package into separate files
Import modules between files using the syntax `from . import foobar`,
renaming what used to be `FooBar` to `foobar.FooBar` when moved to a
separate file.

In __init__.py only import what is meant to be public API.

Signed-off-by: Tom Gundersen <teg@jklm.no>
2019-08-21 09:56:50 +04:00

12 lines
202 B
Python

from .pipeline import Assembler, AssemblerFailed, load, Pipeline, Stage, StageFailed
__all__ = [
"Assembler",
"AssemblerFailed",
"load",
"Pipeline",
"Stage",
"StageFailed",
]