10 lines
236 B
Python
10 lines
236 B
Python
from core.observers.BaseObserver import BaseObserver
|
|
|
|
|
|
class ApplicationVersionObserver(BaseObserver):
|
|
|
|
def __init__(self):
|
|
|
|
self.on_downloading = []
|
|
self.on_download_progressing = []
|
|
self.on_downloaded = []
|