Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/project/consts.ts
1447 views
1
/*
2
* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
// static values for monitoring and project information
7
8
import { uuid } from "@cocalc/util/misc";
9
10
// uniquely identify this instance of the local hub
11
export const session_id = uuid();
12
13
// record when this instance started
14
export const start_ts = Date.now();
15
16