File size: 230 Bytes
c17543d |
1 2 3 4 5 6 7 8 9 10 |
"""
Abstract base classes and interfaces for model implementations.
"""
from base_interfaces.common_types import *
from abc import ABC, abstractmethod
class AbstractModel(ABC):
"""Minimal model interface"""
pass
|