NucelarMonitor/Python/Interfaces/Owners/DispatchersInterface.py

7 lines
126 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from abc import ABC, abstractmethod
class DispatchersInterface(ABC):
pass