Genie.jl icon indicating copy to clipboard operation
Genie.jl copied to clipboard

Add support to define route groups

Open essenciary opened this issue 3 years ago • 1 comments

Add support to define route groups

essenciary avatar Jul 21 '20 14:07 essenciary

my suggestion:

route("main") do
  return [
    route("1") do
    end,

    route("2") do
    end
  ]
end

http://localhost:8000/main/1

http://localhost:8000/main/2

igotfr avatar Nov 23 '20 17:11 igotfr