11 lines
171 B
JavaScript
11 lines
171 B
JavaScript
|
|
||
|
const TaskUrl = "http://localhost:8820";
|
||
|
|
||
|
const MsgType = {
|
||
|
CONTENT: 'content',
|
||
|
NEWURL: 'newurl',
|
||
|
WAIT: 'wait',
|
||
|
TIMEOUT: 'timeout',
|
||
|
ERROR: 'error',
|
||
|
}
|