13 lines
194 B
Python
13 lines
194 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class DataViewMeta(ABC):
|
|
@abstractmethod
|
|
def get_header(self):
|
|
pass
|
|
|
|
|
|
class ComicView(DataViewMeta):
|
|
def get_header(self):
|
|
pass
|