UNPKG
@tower1229/flow-ui
Version:
latest (1.0.1)
1.0.1
1.0.0
Highly customizable UI framework based Seajs/jQuery
github.com/flow-ui/Flow-UI
flow-ui/Flow-UI
@tower1229/flow-ui
/
flow-ui
/
js
/
api.js
13 lines
(12 loc)
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * api */
define
(
function
(
require
,
exports
,
module
) {
//开发模式
var
develop =
true
;
// api管理
var
api = {
test
: develop ?
'/develop'
:
'/product'
};
module
.
exports
= api; });