mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
11 lines
315 B
Python
11 lines
315 B
Python
from Vulkan.Views.AbstractView import AbstractView
|
|
from Vulkan.Controllers.ControllerResponse import ControllerResponse
|
|
|
|
|
|
class MessageView(AbstractView):
|
|
def __init__(self, response: ControllerResponse) -> None:
|
|
super().__init__(response)
|
|
|
|
async def run(self) -> None:
|
|
return super().run()
|