Browse and listen to thousands of radio stations across the globe right from your terminal ๐ŸŒŽ ๐Ÿ“ป ๐ŸŽตโœจ
radio rust tokio web-radio command-line-tool tui
at main 267 B view raw
1import { GraphQLClient } from "../deps.ts"; 2 3export function createGQLClient(port: number, token: string): GraphQLClient { 4 return new GraphQLClient(`http://127.0.0.1:${port}/query`, { 5 headers: { 6 Authorization: "Basic " + btoa(token + ":"), 7 }, 8 }); 9}