File size: 259 Bytes
399944f
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from __future__ import annotations

from kbdebugger.pipeline.config import PipelineConfig
from kbdebugger.pipeline.run import run_pipeline


def main() -> None:
    cfg = PipelineConfig.from_env()
    run_pipeline(cfg)


if __name__ == "__main__":
    main()