feat!: complete rearrangement for multi-module platform-specific modules

This commit is contained in:
2024-10-27 16:50:15 -05:00
parent 75892037b8
commit 1444d3fc2b
21 changed files with 546 additions and 157 deletions

20
go.mod
View File

@@ -1,7 +1,21 @@
module xevion.dev/hass-tray
module xevion.dev/door-tray
go 1.23.1
require (
golang.org/x/sys v0.1.0
internal v1.0.0
)
replace internal => ./internal/
require (
github.com/getlantern/systray v1.2.2 // indirect
github.com/joho/godotenv v1.5.1 // indirect
golang.org/x/text v0.19.0 // indirect
saml.dev/gome-assistant v0.2.3 // indirect
)
require (
github.com/getlantern/context v0.0.0-20190109183933-c447772a6520 // indirect
github.com/getlantern/errors v0.0.0-20190325191628-abdb3e3e36f7 // indirect
@@ -9,17 +23,13 @@ require (
github.com/getlantern/hex v0.0.0-20190417191902-c6586a6fe0b7 // indirect
github.com/getlantern/hidden v0.0.0-20190325191715-f02dbb02be55 // indirect
github.com/getlantern/ops v0.0.0-20190325191751-d70cb0d6f85f // indirect
github.com/getlantern/systray v1.2.2 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/gobuffalo/envy v1.10.2 // indirect
github.com/gobuffalo/packd v1.0.2 // indirect
github.com/gobuffalo/packr v1.30.1 // indirect
github.com/golang-module/carbon v1.7.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/nathan-osman/go-sunrise v1.1.0 // indirect
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
golang.org/x/sys v0.1.0 // indirect
saml.dev/gome-assistant v0.2.3 // indirect
)