63765f7222
Regular campaign sender seems to have most of the code in place. (Not tested.)
9 lines
119 B
JavaScript
9 lines
119 B
JavaScript
'use strict';
|
|
|
|
const AppType = {
|
|
TRUSTED: 0,
|
|
SANDBOXED: 1,
|
|
PUBLIC: 2
|
|
};
|
|
|
|
module.exports.AppType = AppType;
|