let Constants = {
    "CHANNEL": {
        SSH: "ssh",
        TUNNEL: "tunnel",
        X11: "x11"
    },
    "STATUS": {
        BEFORECONNECT: "beforeconnect",
        CONNECT: "connect",
        BEFOREDISCONNECT: "beforedisconnect",
        DISCONNECT: "disconnect"
    },
    "HOPPINGTOOL": {
        NETCAT: 'nc',
        SOCAT: 'socat',
        NATIVE: 'native'
    }
}

export = Constants