Updated things for compound testing

This commit is contained in:
Dunemask 2022-07-12 02:44:44 +00:00
parent 4e6732c09b
commit 5c3f865604
16 changed files with 160 additions and 56 deletions

View file

@ -2,6 +2,8 @@ const JOB_REP = "jr"; // Job Report Event
const JOB_LOG = "jl"; // Job Log Event
const JOB_CLS = "jc"; // Job Close Event
const JOB_CRT = "jcr"; // Job Create Event
const PPL_TRG = "plr"; // Pipeline Trigger Event
const PPL_CLS = "plc"; // Pipeline Close Event
const ERR = "e"; // Socket Error
export default {
@ -9,5 +11,7 @@ export default {
JOB_LOG,
JOB_CLS,
JOB_CRT,
PPL_TRG,
PPL_CLS,
ERR,
};