environment/lib/user.rb

9 lines
111 B
Ruby
Raw Normal View History

2025-08-06 08:00:01 +02:00
module User
2025-08-07 16:29:11 +02:00
def self.install(context)
puts "Creating #{context.type}: #{context.user_name}"
end
2025-08-06 08:00:01 +02:00
2025-08-07 16:29:11 +02:00
end