Skip to content

Instantly share code, notes, and snippets.

@marcelolebre
Last active January 13, 2020 16:43
Show Gist options
  • Save marcelolebre/68f81322a087b3026003d2673aa49ec9 to your computer and use it in GitHub Desktop.
Save marcelolebre/68f81322a087b3026003d2673aa49ec9 to your computer and use it in GitHub Desktop.
class CreateAppService(object):
def __init__(self, name, description):
self._name = name
self._description = description
def call(self):
app = App.create(name=self._name, description=self._description)
return app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment