Philipp Horstenkamp 6e037d6837
Some checks failed
Auto Maintenance Cycle / pre-commit Autoupdate (push) Failing after 33s
Added the node modules.
2023-11-19 03:45:16 +01:00

12 lines
344 B
JavaScript

import ENDPOINTS from "./generated/endpoints";
import { VERSION } from "./version";
import { endpointsToMethods } from "./endpoints-to-methods";
export function restEndpointMethods(octokit) {
const api = endpointsToMethods(octokit, ENDPOINTS);
return {
...api,
rest: api,
};
}
restEndpointMethods.VERSION = VERSION;