Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 16 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | const base = { |
||
2 | api: function() { |
||
3 | // let api = "http://localhost:8333"; |
||
4 | let api = "https://me-api.pamo18.me"; |
||
5 | |||
6 | return api; |
||
7 | }, |
||
8 | chat: function() { |
||
9 | // let url = "http://localhost:8334"; |
||
10 | let url = "https://chat-server.pamo18.me"; |
||
11 | |||
12 | return url; |
||
13 | } |
||
14 | }; |
||
15 | |||
16 | export default base; |
||
17 |