Implementation of a generic backend of eshop in Crystal
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
240 B

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