diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-09-13 21:44:20 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-09-14 06:56:35 +0200 |
commit | b728235b6ceda36a98ecb85eb051352f1658fe11 (patch) | |
tree | de2f2d524310a82cd87b86bf8f2c2f699e0e6a9e /xP/go.mod | |
parent | d31ab67268d7627e36038c35e0083f3ef2fd60dc (diff) | |
download | xK-b728235b6ceda36a98ecb85eb051352f1658fe11.tar.gz xK-b728235b6ceda36a98ecb85eb051352f1658fe11.tar.xz xK-b728235b6ceda36a98ecb85eb051352f1658fe11.zip |
xP: move to a WebSocket package with compression
Compression happens to be broken in Safari,
though luckily there are friendlier browsers one can use.
Diffstat (limited to 'xP/go.mod')
-rw-r--r-- | xP/go.mod | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,4 +2,9 @@ module janouch.name/xK/xP go 1.18 -require golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d +require nhooyr.io/websocket v1.8.7 + +require ( + github.com/klauspost/compress v1.15.9 // indirect + golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect +) |