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/next/lib/account/get-account.ts
Views: 687
1
// There's a ton of code that imports from this file, so just importing and exporting instead of changing all of that.
2
3
// getAccount takes a req and returns the account_id, resolving either the api key or remember_me token.
4
5
import getAccount from "@cocalc/server/auth/get-account";
6
export default getAccount;
7
8