mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
17 lines
438 B
Python
17 lines
438 B
Python
|
|
from anixstream.View import CrashLogScreenView
|
|
from anixstream.Model import CrashLogScreenModel
|
|
|
|
|
|
|
|
class CrashLogScreenController:
|
|
"""The crash log screen controller
|
|
"""
|
|
def __init__(self, model:CrashLogScreenModel):
|
|
self.model = model
|
|
self.view = CrashLogScreenView(controller=self, model=self.model)
|
|
# self.update_anime_view()
|
|
|
|
def get_view(self) -> CrashLogScreenView:
|
|
return self.view
|