@robotical/martyblocks
Version:
MartyBlocks based on Scratch for Marty the Robot by Robotical
13 lines (12 loc) • 332 B
JavaScript
import { endpoint } from "@octokit/endpoint";
import { getUserAgent } from "universal-user-agent";
import { VERSION } from "./version";
import withDefaults from "./with-defaults";
const request = withDefaults(endpoint, {
headers: {
"user-agent": `octokit-request.js/${VERSION} ${getUserAgent()}`
}
});
export {
request
};