snipplets.dev/projects/Kemal.cr/routes.cr

20 lines
182 B
Crystal
Raw Normal View History

2023-06-11 18:46:10 +03:00
get "/" do
..show something..
end
post "/" do
..create something..
end
put "/" do
..replace something..
end
patch "/" do
..modify something..
end
delete "/" do
..a
end