An authentication server
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
237 B

  1. require "kemal"
  2. require "./authenticate/http/user"
  3. require "./authenticate/http/product"
  4. require "./authenticate/http/category"
  5. get "/" do |context|
  6. context.response.content_type = "application/json"
  7. "OK".to_json
  8. end
  9. Kemal.run