# -*- coding: utf-8 -*-

from abc import abstractmethod

from app.controllers.controller import Controller


class EquipmentController(Controller):
    def __init__(self):
        super(EquipmentController, self).__init__()

    @abstractmethod
    async def run(self):
        pass