Johan B.W. de Vries bb9ac649bf Routing ideas
2023-04-11 09:45:58 +02:00

16 lines
307 B
Python

from typing import List
from .image import Image
from .method import Method
class Container:
__slots__ = ('image', 'methods', )
image: Image
methods: List[Method]
def __init__(self, image: Image, methods: List[Method]) -> None:
self.image = image
self.methods = methods