diff options
author | Robby Zambito <contact@robbyzambito.me> | 2024-11-17 18:36:23 -0500 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2024-11-17 18:39:28 -0500 |
commit | 9781690db73f6d2f2090381dfe44d9b364741d0d (patch) | |
tree | d7daa755b7b0affa7f6468498a8b9346cc85f5eb /go.mod |
Initial commit
Dumb proxy all posts to bsky.feed.post
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +module git.robbyzambito.me/bluesky-nats-proxy/v2 + +go 1.23.2 + +require ( + github.com/gorilla/websocket v1.5.3 // indirect + github.com/klauspost/compress v1.17.2 // indirect + github.com/nats-io/nats.go v1.37.0 // indirect + github.com/nats-io/nkeys v0.4.7 // indirect + github.com/nats-io/nuid v1.0.1 // indirect + golang.org/x/crypto v0.18.0 // indirect + golang.org/x/sys v0.16.0 // indirect +) |