UNPKG
occaecatidicta
Version:
latest (1.0.0)
1.0.0
github.com/MyleneMcClure/occaecatidicta.git
MyleneMcClure/occaecatidicta
occaecatidicta
/
examples
/
websocket-chat-ts-run
/
game-server
/
config
/
adminUser.ts
17 lines
•
291 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports
= [{
'id'
:
'user-1'
,
'username'
:
'admin'
,
'password'
:
'admin'
,
'level'
:
1
}, {
'id'
:
'user-2'
,
'username'
:
'monitor'
,
'password'
:
'monitor'
,
'level'
:
2
}, {
'id'
:
'user-3'
,
'username'
:
'test'
,
'password'
:
'test'
,
'level'
:
2
} ]
;