UNPKG

rune

Version:

CLI to upload your games to Rune

8 lines (7 loc) 285 B
import { ApolloClient, InMemoryCache, } from "@apollo/client/index.js"; import { contextLink } from "./contextLink.js"; import { uploadLink } from "./uploadLink.js"; export const client = new ApolloClient({ link: contextLink.concat(uploadLink), cache: new InMemoryCache(), });