11 lines
118 B
Python
11 lines
118 B
Python
|
#encoding = utf8
|
||
|
|
||
|
from abc import ABC, abstractmethod
|
||
|
|
||
|
|
||
|
class BaseRender(ABC):
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
|