Created
April 13, 2019 15:43
-
-
Save dmytrostriletskyi/e255264fe0eef38c58cebc02e6c6a71b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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