Skip to content

Instantly share code, notes, and snippets.

@hedgesky
Created June 13, 2020 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hedgesky/bd8ec1823c20ba5a754ccfd80a26efb7 to your computer and use it in GitHub Desktop.
Save hedgesky/bd8ec1823c20ba5a754ccfd80a26efb7 to your computer and use it in GitHub Desktop.
class CreateUser
def self.call(*args)
new(*args).call
end
def initialize(name)
@name = name
end
def call
so_stuff
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment