-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathroute.php
More file actions
17 lines (15 loc) · 747 Bytes
/
Copy pathroute.php
File metadata and controls
17 lines (15 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
// +----------------------------------------------------------------------
// | JNAPI [ Jinaong Api Docment ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018 All rights reserved.
// +----------------------------------------------------------------------
// | Author: 欧阳 <xianglong111@126.com>
// +----------------------------------------------------------------------
Route::post('get', 'index/home/get')->allowCrossDomain();
Route::post('post', 'index/home/post')->allowCrossDomain();
Route::post('delete', 'index/home/delete')->allowCrossDomain();
Route::post('gets', 'index/home/gets')->allowCrossDomain();
Route::post('posts', 'index/home/posts')->allowCrossDomain();
return [
];