rDrama/files/routes/volunteer_common.py
2022-12-01 18:53:24 -08:00

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 ""