Commit 1fcd96aa by 冷斌

fix bug

parent 67a319cf
......@@ -16,6 +16,12 @@ if (file_exists("data/conf/route.php")) {
$routes = array();
}
$routes = [
'notify_wx' => function() {
echo 1; die;
}
];
$configs= array(
"LOAD_EXT_FILE"=>"extend",
'UPLOADPATH' => 'data/upload/',
......
<?php return array (
'notify_wx' => function() {
echo 1; die;
}
);
<?php return array ();
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment