from core.models.system.SystemState import SystemState class SystemStateController: @staticmethod def get(): return SystemState.get() @staticmethod def exists(): return SystemState.exists() @staticmethod def create(profile_id: int, firewalled: bool) -> SystemState: return SystemState(profile_id, firewalled).save() @staticmethod def update_or_create(system_state): system_state.save() @staticmethod def dissolve(): return SystemState.dissolve()