15 lines
372 B
Python
15 lines
372 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from typing import Self, Optional, Any
|
|
from abc import ABC
|
|
|
|
class ControllerAbstractInterface(ABC):
|
|
|
|
def __init__(self:Self,
|
|
cxcv:Any,
|
|
key:str,
|
|
inputs:Optional[dict[str, Any|None]|tuple[Any|None, ...]|list[Any|None]] = None
|
|
) -> None:
|
|
self.key:str = None
|
|
self.via:str = None |