mailtrain/shared/app.js
Tomas Bures 63765f7222 Client's public folder renamed to static
Regular campaign sender seems to have most of the code in place. (Not tested.)
2018-09-18 10:30:13 +02:00

9 lines
119 B
JavaScript

'use strict';
const AppType = {
TRUSTED: 0,
SANDBOXED: 1,
PUBLIC: 2
};
module.exports.AppType = AppType;