Skip to content

Commit

Permalink
re-aded winio dependency mistakenly removed
Browse files Browse the repository at this point in the history
  • Loading branch information
luskaner committed Aug 2, 2024
1 parent 8666069 commit ba0ace0
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 4 deletions.
8 changes: 7 additions & 1 deletion launcher-agent/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,10 @@ module github.com/luskaner/aoe2DELanServer/agent

go 1.22.0

require golang.org/x/sys v0.22.0
require (
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3
golang.org/x/sys v0.22.0
)

require github.com/deckarep/golang-set/v2 v2.6.0 // indirect
6 changes: 6 additions & 0 deletions launcher-agent/go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM=
github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4=
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3 h1:6c1INxj3RzzcDzuQYPYYKQ0+ULdqnqhjgseDbK4wGFU=
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3/go.mod h1:4YQ/5OtWHcPQL5pJuiGg5A56GyoGkH6LLTShX2zmR/8=
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3 h1:TN1zO7bRv2c1ECC3sqvepG6tdk34MJ42BViPk/iRYvs=
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3/go.mod h1:u/PJEKZ+8tBwyYZT1KNRBddDxBxJq9KkuGoPbS5paSo=
golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI=
golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
2 changes: 1 addition & 1 deletion launcher-config-admin-agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Resides in `bin` subdirectory.
## Exit Codes

* [Base codes](/common/errors.go).
* [Launcher shared codes](/launcherCommon/errors.go).
* [Launcher shared codes](/launcher-common/errors.go).
* [Config Admin codes](internal/errors.go) (some might only be sent through IPC).
1 change: 1 addition & 0 deletions launcher-config-admin-agent/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module github.com/luskaner/aoe2DELanServer/cfgAdminAgent
go 1.22.0

require (
github.com/Microsoft/go-winio v0.6.2
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3
golang.org/x/sys v0.22.0
Expand Down
2 changes: 2 additions & 0 deletions launcher-config-admin-agent/go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM=
github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4=
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3 h1:6c1INxj3RzzcDzuQYPYYKQ0+ULdqnqhjgseDbK4wGFU=
Expand Down
1 change: 1 addition & 0 deletions launcher-config-admin-agent/internal/ipc.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"crypto/x509"
"encoding/gob"
"fmt"
"github.com/Microsoft/go-winio"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
Expand Down
2 changes: 1 addition & 1 deletion launcher-config-admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ CLI is available. You can see the available options with
## Exit Codes

* [Base codes](/common/errors.go).
* [Launcher shared codes](/launcherCommon/errors.go).
* [Launcher shared codes](/launcher-common/errors.go).
* [Config Admin codes](internal/errors.go).
2 changes: 1 addition & 1 deletion launcher-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ You may run `cleanup.bat` to revert all changes (forced).
## Exit Codes

* [Base codes](/common/errors.go).
* [Launcher shared codes](/launcherCommon/errors.go).
* [Launcher shared codes](/launcher-common/errors.go).
* [Config codes](internal/errors.go).
1 change: 1 addition & 0 deletions launcher-config/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ require (
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3
github.com/spf13/cobra v1.8.1
golang.org/x/sys v0.22.0
github.com/Microsoft/go-winio v0.6.2
)

require (
Expand Down
2 changes: 2 additions & 0 deletions launcher-config/go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM=
github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4=
Expand Down
1 change: 1 addition & 0 deletions launcher-config/internal/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package internal
import (
"crypto/x509"
"encoding/gob"
"github.com/Microsoft/go-winio"
mapset "github.com/deckarep/golang-set/v2"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
Expand Down

0 comments on commit ba0ace0

Please sign in to comment.