Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated nhooyr.io/websocket to github.com/coder/websocket #297

Merged
merged 1 commit into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"