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