about summary refs log tree commit diff
path: root/app/lib/command_tag/commands/hello_world.rb
blob: 581b21317ed854100d328d6d4e43de4c9c5b0466 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

module CommandTag::Commands::HelloWorld
  def handle_hello_world_at_start(_)
    @text << "\nHello, world!"
  end
end