python-dependency-injector/examples/miniapps/api_client/models.py

15 lines
293 B
Python
Raw Normal View History

2016-04-20 14:19:54 +03:00
"""asd."""
class User(object):
"""User model."""
def __init__(self, id, api_client):
"""Initializer."""
self.id = id
self.api_client = api_client
def register(self):
"""Register user."""
self.api_client.call('register', {'id': self.id})