15 lines
270 B
Python
15 lines
270 B
Python
from abc import abstractmethod, ABCMeta
|
|
|
|
from reflex.base import Base
|
|
|
|
|
|
class CustomBackendServer(Base):
|
|
|
|
@abstractmethod
|
|
def run_prod(self):
|
|
raise NotImplementedError()
|
|
|
|
@abstractmethod
|
|
def run_dev(self):
|
|
raise NotImplementedError()
|