""" Schulverwaltung Frontend Module - Legacy Compatibility Wrapper This file provides backward compatibility for code importing from school.py. All functionality has been moved to the school/ module. For new code, import directly from: from frontend.school import router """ # Re-export the router from the modular structure from .school import router __all__ = [ "router", ]