python-dependency-injector/examples/miniapps/services/example/main.py

9 lines
282 B
Python
Raw Normal View History

2016-09-18 23:00:10 +03:00
"""Example main module."""
2016-10-06 22:48:43 +03:00
def main(uid, password, photo, users_service, auth_service, photos_service):
2016-09-18 23:00:10 +03:00
"""Example main function."""
2016-10-06 22:48:43 +03:00
user = users_service.get_user_by_id(uid)
auth_service.authenticate(user, password)
photos_service.upload_photo(user['uid'], photo)