module MyApp class HelloWorldHandler < RubyPitaya::HandlerBase non_authenticated_actions :sayHello def sayHello response = { code: 'RP-200', msg: 'Hello!' } end end end