mirror of
https://github.com/vladmandic/automatic
synced 2026-09-04 12:00:46 +02:00
9 lines
189 B
Python
9 lines
189 B
Python
from abc import *
|
|
from typing import *
|
|
|
|
class MemoryControl(metaclass=ABCMeta):
|
|
driver: Any = None
|
|
@abstractmethod
|
|
def mem_get_info(index: int) -> Tuple[int, int]:
|
|
pass
|