Skip to content

Instantly share code, notes, and snippets.

@dmytrostriletskyi
Created April 13, 2019 15:43
Show Gist options
  • Save dmytrostriletskyi/e255264fe0eef38c58cebc02e6c6a71b to your computer and use it in GitHub Desktop.
Save dmytrostriletskyi/e255264fe0eef38c58cebc02e6c6a71b to your computer and use it in GitHub Desktop.
class User:
def __init__(self, storage):
self.storage = storage
def create(self, name):
return storage.create_with_name(name=name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment