15 lines
622 B
JavaScript
15 lines
622 B
JavaScript
|
"use strict";
|
||
|
// -------------------------------------------------------------
|
||
|
// WARNING: this file is used by both the client and the server.
|
||
|
// Do not use any browser or node-specific API!
|
||
|
// -------------------------------------------------------------
|
||
|
/* eslint hammerhead/proto-methods: 2 */
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
const ServiceCommands = {
|
||
|
getUploadedFiles: 'hammerhead|command|get-uploaded-files',
|
||
|
setCookie: 'hammerhead|command|set-cookie',
|
||
|
uploadFiles: 'hammerhead|command|upload-files',
|
||
|
};
|
||
|
exports.default = ServiceCommands;module.exports = exports.default;
|
||
|
|