from datetime import datetime from starfall.web.blueprints.base import BaseBlueprint from starfall.web.controllers.base import BaseController class ImprintController(BaseController): @classmethod def apply(cls, bp: BaseBlueprint): bp.data["lastmod"] = cls.last_modified() @classmethod def last_modified(cls): return datetime.fromisoformat("2025-05-11")