File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ // Package ltbsky is a lightweight posting client for Bluesky.
2+ //
3+ // It allows bots or other automated agents to create posts with text, images,
4+ // and language tags.
15package ltbsky
26
37import (
@@ -19,7 +23,7 @@ import (
1923 "golang.org/x/image/draw"
2024)
2125
22- // Client represents a client for interacting with the Bluesky server.
26+ // A Client for interacting with the Bluesky server.
2327type Client struct {
2428 server string
2529 handle string
@@ -28,7 +32,8 @@ type Client struct {
2832 httpClient * http.Client
2933}
3034
31- // NewClient creates a new Client instance with the provided server, handle, and token.
35+ // NewClient creates a new Client instance with the provided server, handle,
36+ // and token.
3237func NewClient (server , handle , password string ) (* Client , error ) {
3338 if server == "" {
3439 return nil , fmt .Errorf ("server cannot be empty" )
You can’t perform that action at this time.
0 commit comments