UNPKG
worktile
Version:
latest (1.0.2)
1.0.2
1.0.1
0.1.2
0.1.1
0.0.4
0.0.3
0.0.2
0.0.1
Node.js SDK for worktile APIs
github.com/isayme/node-worktile
isayme/node-worktile
worktile
/
lib
/
user.js
19 lines
(17 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** * 获取用户信息 *
@memberof
Worktile#users */
function
profile
(
)
{
return
this.
request
({
uri
:
'/v1/user/profile'
}) }
/** * 用户(user)接口 *
@namespace
users *
@memberof
Worktile# */
module.exports = { profile: profile }