mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-05-28 03:19:54 +00:00
20 lines
333 B
JSON
20 lines
333 B
JSON
{
|
|
"routes": {
|
|
"route_name": {
|
|
"path": "/",
|
|
"controller": "\\Index\\Controller\\IndexController",
|
|
"function": "index"
|
|
},
|
|
"route_name2": {
|
|
"path": "/test/{slug}/",
|
|
"controller": "\\Index\\Controller\\IndexController",
|
|
"function": "test",
|
|
"args": {
|
|
"slug": {
|
|
"regex": "/[a-z]+/"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|