alpacahq / alpaca-trade-api-go

Go client for Alpaca's trade API
Apache License 2.0
320 stars 87 forks source link

Replace deprecated nhooyr.io/websocket with github.com/coder/websocket #301

Closed Newtoniano closed 2 weeks ago

Newtoniano commented 2 weeks ago

Summary

This PR updates the import path and names from nhooyr.io/websocket to github.com/coder/websocket due to the deprecation of the former import path.

Reason for Change

The nhooyr.io/websocket library has been deprecated, and its functionality and future development have been transferred to github.com/coder/websocket. This change ensures that the codebase remains up-to-date and maintains compatibility with the latest features and fixes.

Changes Made