11 lines
208 B
Python
11 lines
208 B
Python
import abc
|
|
|
|
class VCSBase(metaclass=abc.ABCMeta):
|
|
"""Base class for VCS implementations"""
|
|
|
|
@property
|
|
@abc.abstractmethod
|
|
def name(self) -> str:
|
|
"""Get the name of VCS"""
|
|
pass
|