🎧 The official command-line interface for Rocksky — a modern, decentralized music tracking and discovery platform built on the AT Protocol.

move shebang to index.ts

+2 -2
-2
src/client.ts
··· 1 - #!/usr/bin/env node 2 - 3 1 export const ROCKSKY_API_URL = "https://api.rocksky.app"; 4 2 5 3 export class RockskyClient {
+2
src/index.ts
··· 1 + #!/usr/bin/env node 2 + 1 3 import { nowplaying } from "cmd/nowplaying"; 2 4 import { whoami } from "cmd/whoami"; 3 5 import { Command } from "commander";