You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
471 B
Python
22 lines
471 B
Python
# tasks.py
|
|
class ModelTester:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def run_tests(self):
|
|
# Код для тестирования моделей
|
|
pass
|
|
|
|
|
|
class ModelUpdater:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def check_for_updates(self):
|
|
# Код для проверки наличия обновлений моделей
|
|
pass
|
|
|
|
def update_models(self):
|
|
# Код для обновления моделей
|
|
pass
|