@cocalc/project
Version:
CoCalc: project daemon
22 lines (18 loc) • 490 B
text/typescript
/*
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
* License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details
*/
// THIS IS STILL JUST A STUB.
import {
NBGraderAPIOptions,
NBGraderAPIResponse,
} from "@cocalc/frontend/jupyter/nbgrader/api";
export async function nbgrader(
client,
logger,
opts: NBGraderAPIOptions
): Promise<NBGraderAPIResponse> {
logger.debug("nbgrader STUB", opts);
client = client;
return { output: opts, ids: [] };
}