about summary refs log tree commit diff
path: root/app/lib/command_tag/command/hello_world.rb
blob: ab10b495b325f51bf7806871d8c2ccc376e24eb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module CommandTag::Command::HelloWorld
  def handle_helloworld_startup
    @vars['hello_world'] = ['Hello, world!']
  end

  def handle_hello_world_with_return(_)
    'Hello, world!'
  end
end