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

require "kemal"
require "./sales_backend/http/user"
require "./sales_backend/http/product"
require "./sales_backend/http/category"
get "/" do |context|
context.response.content_type = "application/json"
"OK".to_json
end
Kemal.run