CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/backend/misc_node.ts
Views: 687
1
//########################################################################
2
// This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
// License: MS-RSL – see LICENSE.md for details
4
//########################################################################
5
6
import enable_mesg from "./tcp/enable-messaging-protocol";
7
export { enable_mesg };
8
export { sha1, uuidsha1 } from "./sha1";
9
import abspath from "./misc/abspath";
10
export { abspath };
11
export { execute_code } from "./execute-code";
12
export { touch } from "./misc/touch";
13
14