compose-viz/compose_viz/parser.py

11 lines
257 B
Python
Raw Normal View History

2022-05-07 18:42:14 +02:00
from compose_viz.compose import Compose
class Parser:
def __init__(self):
pass
def parse(self, file_path: str) -> Compose:
# validate input file using `docker-compose config -q sys.argv[1]` first
raise NotImplementedError