from abc import ABC, abstractmethod
from .event import VTEvent

class Controller(ABC):
    ev_tab_switch: VTEvent

    @abstractmethod
    async def handle_input(self, input):
        ...