Categorygithub.com/stemstr/blastr
repositorypackage
0.1.0
Repository: https://github.com/stemstr/blastr.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

blastr

Go module for sending nostr events to blastr

package main

import (
	"context"

	"github.com/stemstr/blastr"
)

func main() {
	client, _ := blastr.New("nsec1xxx")

	_ = client.SendText(context.Background(), "hello, world!")
}