#!/usr/bin/env python3 # -*- coding: utf-8 -*- from typing import Self, Any from abc import ABC, abstractmethod class TerminalManagerInterface(ABC): @abstractmethod def add(self:Self, inputs:Any|None, overwrite:bool = False) -> None:pass