"Initial" working version, after cleanup.

This commit is contained in:
Darell Tan
2023-04-23 23:20:07 +08:00
commit 84398fc53a
13 changed files with 2269 additions and 0 deletions

24
go.mod Normal file
View File

@@ -0,0 +1,24 @@
module hapz2m
go 1.20
require (
github.com/brutella/hap v0.0.26-0.20230413145315-4d1fbc179bbb
github.com/eclipse/paho.mqtt.golang v1.4.2
)
require (
github.com/brutella/dnssd v1.2.6 // indirect
github.com/go-chi/chi v1.5.4 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/miekg/dns v1.1.53 // indirect
github.com/tadglines/go-pkgs v0.0.0-20210623144937-b983b20f54f9 // indirect
github.com/xiam/to v0.0.0-20200126224905-d60d31e03561 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/tools v0.8.0 // indirect
)