mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
16 lines
428 B
Python
16 lines
428 B
Python
|
|
from anixstream.View import DownloadsScreenView
|
|
from anixstream.Model import DownloadsScreenModel
|
|
|
|
|
|
class DownloadsScreenController:
|
|
"""The controller for the download screen
|
|
"""
|
|
def __init__(self, model:DownloadsScreenModel):
|
|
self.model = model
|
|
self.view = DownloadsScreenView(controller=self, model=self.model)
|
|
|
|
def get_view(self) -> DownloadsScreenView:
|
|
return self.view
|
|
|