10 lines
240 B
Python
10 lines
240 B
Python
from core.observers.BaseObserver import BaseObserver
|
|
|
|
|
|
class ApplicationVersionObserver(BaseObserver):
|
|
|
|
def __init__(self):
|
|
|
|
self.on_downloading = []
|
|
self.on_download_progress = []
|
|
self.on_download_finished = []
|