8 lines
111 B
Ruby
8 lines
111 B
Ruby
|
|
module User
|
|
|
|
def self.install(context)
|
|
puts "Creating #{context.type}: #{context.user_name}"
|
|
end
|
|
|
|
end
|