# -*- coding: utf-8 -*- from abc import ABC class Controller(ABC): def __init__(self): self._results = {} def get_results(self): return self._results