mirror of
https://github.com/joel-st/kunkun-nostr-goto-repo.git
synced 2025-06-19 00:25:03 +00:00
11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
import { expose, HeadlessCommand } from "@kksh/api/headless"
|
|
import { open } from "@kksh/api/headless";
|
|
|
|
class NostrOpenNipRepoNostrCom extends HeadlessCommand {
|
|
async load() {
|
|
return open.url("https://nips.nostr.com/")
|
|
}
|
|
}
|
|
|
|
expose(new NostrOpenNipRepoNostrCom())
|