add cli app and fix relationship typos
This commit is contained in:
committed by
Thomas Peetz
parent
89b7b87b8c
commit
54bc17ee7d
@@ -0,0 +1,12 @@
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
|
||||
class DataViewMeta(ABC):
|
||||
@abstractmethod
|
||||
def get_header(self):
|
||||
pass
|
||||
|
||||
|
||||
class ComicView(DataViewMeta):
|
||||
def get_header(self):
|
||||
pass
|
||||
Reference in New Issue
Block a user