mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-08 13:59:46 -06:00
8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
const utils = require('./utils');
|
|
const log = require('./log');
|
|
|
|
const sourceId = utils.randomString(16);
|
|
|
|
log.info("Using sourceId=" + sourceId);
|
|
|
|
module.exports = sourceId; |