NucelarMonitor/Python/Dispatchers/AgentsDispatcher.py
2026-03-23 14:56:59 +01:00

13 lines
347 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from typing import Self
from Interfaces.Application.NucelarMonitorInterface import NucelarMonitorInterface
class AgentsDispatcher:
def __init__(self:Self, nucelar_monitor:NucelarMonitorInterface) -> None:
super().__init__(nucelar_monitor)
def save(self:Self) -> None:
pass