11 lines
251 B
Python
11 lines
251 B
Python
|
from typing import List
|
||
|
from compose_viz.service import Service
|
||
|
|
||
|
|
||
|
class Compose:
|
||
|
def __init__(self, services: List[Service]) -> None:
|
||
|
self.services = services
|
||
|
|
||
|
def extract_networks(self) -> List[str]:
|
||
|
raise NotImplementedError
|