mixin.py 310 B

1234567891011121314
  1. """Default mixin for all app mixins."""
  2. from reflex.base import Base
  3. class AppMixin(Base):
  4. """Define the base class for all app mixins."""
  5. def _init_mixin(self):
  6. """Initialize the mixin.
  7. Any App mixin can override this method to perform any initialization.
  8. """
  9. ...