13 lines
347 B
Python
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 |