compose-viz/compose_viz/parser.py

12 lines
284 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
2022-05-14 14:26:32 +02:00
return Compose([])
2022-05-07 18:42:14 +02:00
raise NotImplementedError