Skip to content

Commit

Permalink
Updated nhooyr.io/websocket to github.com/coder/websocket (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellBerend authored Aug 24, 2024
1 parent 74ee6d3 commit 68fe8dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ You can now use the `--advanced` flag when running the `create` command to get a

- [HTMX](https://htmx.org/) support using [Templ](https://templ.guide/)
- CI/CD workflow setup using [Github Actions](https://docs.github.com/en/actions)
- [Websocket](https://pkg.go.dev/nhooyr.io/websocket) sets up a websocket endpoint
- [Websocket](https://pkg.go.dev/github.com/coder/websocket) sets up a websocket endpoint
- [Tailwind](https://tailwindcss.com/) css framework

Note: selecting tailwind option automatically selects htmx.
Expand Down
2 changes: 1 addition & 1 deletion cmd/program/program.go
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ func (p *Project) CreateHtmxTemplates() {
}

func (p *Project) CreateWebsocketImports(appDir string) {
websocketDependency := []string{"nhooyr.io/websocket"}
websocketDependency := []string{"github.com/coder/websocket"}
if p.ProjectType == flags.Fiber {
websocketDependency = []string{"github.com/gofiber/contrib/websocket"}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"nhooyr.io/websocket"
"github.com/coder/websocket"

0 comments on commit 68fe8dd

Please sign in to comment.