12 lines
204 B
Python
12 lines
204 B
Python
|
|
from abc import ABC, abstractmethod
|
|
|
|
class VolunteerDuty(ABC):
|
|
|
|
@abstractmethod
|
|
def accept(self) -> None:
|
|
pass
|
|
|
|
@abstractmethod
|
|
def embed_template(self) -> str:
|
|
return ""
|