Skip to content

Commit

Permalink
changed launcherCommon module name to match folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
luskaner committed Aug 2, 2024
1 parent 26ff023 commit b7a3f99
Show file tree
Hide file tree
Showing 40 changed files with 72 additions and 60 deletions.
4 changes: 2 additions & 2 deletions go.work.example
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ use (
server
)

replace github.com/luskaner/aoe2DELanServer/common => ./common
replace github.com/luskaner/aoe2DELanServer/launcherCommon => ./launcher-common
replace github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3 => ./common
replace github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3 => ./launcher-common
2 changes: 1 addition & 1 deletion launcher-agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ configured to do so. It resides in `bin` subdirectory.
## Exit Codes

* [Base codes](/common/errors.go).
* [Launcher shared codes](/launcherCommon/errors.go).
* [Launcher shared codes](/launcher-common/errors.go).
* [Agent codes](internal/errors.go).
4 changes: 2 additions & 2 deletions launcher-agent/internal/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package internal

import (
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
)

func RunConfig(revertFlags []string) {
Expand Down
2 changes: 1 addition & 1 deletion launcher-agent/internal/errors.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package internal

import launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
import launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"

const (
ErrGameTimeoutStart = iota + launcherCommon.ErrLast
Expand Down
6 changes: 3 additions & 3 deletions launcher-common/go.mod
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module github.com/luskaner/aoe2DELanServer/launcherCommon
module github.com/luskaner/aoe2DELanServer/launcher-common

go 1.22.0

require (
github.com/deckarep/golang-set/v2 v2.6.0
github.com/spf13/cobra v1.8.1
golang.org/x/sys v0.21.0
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.2
github.com/spf13/cobra v1.8.1
golang.org/x/sys v0.22.0
)

require (
Expand Down
2 changes: 2 additions & 0 deletions launcher-common/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80N
github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4=
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.2/go.mod h1:4YQ/5OtWHcPQL5pJuiGg5A56GyoGkH6LLTShX2zmR/8=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM=
github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y=
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
4 changes: 2 additions & 2 deletions launcher-config-admin-agent/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.22.0

require (
github.com/Microsoft/go-winio v0.6.2
golang.org/x/sys v0.21.0
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.2
github.com/luskaner/aoe2DELanServer/launcherCommon v1.2.0-rc.2
golang.org/x/sys v0.22.0
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.2
)
2 changes: 2 additions & 0 deletions launcher-config-admin-agent/go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.2/go.mod h1:4YQ/5OtWHcPQL5pJuiGg5A56GyoGkH6LLTShX2zmR/8=
golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
2 changes: 1 addition & 1 deletion launcher-config-admin-agent/internal/errors.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package internal

import launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
import launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"

const (
ErrCreatePipe = iota + launcherCommon.ErrLast
Expand Down
5 changes: 2 additions & 3 deletions launcher-config-admin-agent/internal/ipc.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ import (
"crypto/x509"
"encoding/gob"
"fmt"
"github.com/Microsoft/go-winio"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"golang.org/x/sys/windows"
"net"
)
Expand Down
4 changes: 2 additions & 2 deletions launcher-config-admin-agent/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"github.com/luskaner/aoe2DELanServer/cfgAdminAgent/internal"
"github.com/luskaner/aoe2DELanServer/common"
"github.com/luskaner/aoe2DELanServer/common/pidLock"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion launcher-config-admin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/spf13/cobra v1.8.1
golang.org/x/sys v0.21.0
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.2
github.com/luskaner/aoe2DELanServer/launcherCommon v1.2.0-rc.2
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.2
)

require (
Expand Down
4 changes: 2 additions & 2 deletions launcher-config-admin/internal/cmd/revert.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"github.com/luskaner/aoe2DELanServer/cfgAdmin/internal"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/cmd"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/cmd"
"github.com/spf13/cobra"
"golang.org/x/sys/windows"
"os"
Expand Down
4 changes: 2 additions & 2 deletions launcher-config-admin/internal/cmd/setUp.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
mapset "github.com/deckarep/golang-set/v2"
"github.com/luskaner/aoe2DELanServer/cfgAdmin/internal"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/cmd"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/cmd"
"github.com/spf13/cobra"
"golang.org/x/sys/windows"
"os"
Expand Down
2 changes: 1 addition & 1 deletion launcher-config-admin/internal/errors.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package internal

import (
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion launcher-config-admin/internal/hosts.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
mapset "github.com/deckarep/golang-set/v2"
"github.com/luskaner/aoe2DELanServer/common"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"golang.org/x/sys/windows"
"io"
"os"
Expand Down
4 changes: 2 additions & 2 deletions launcher-config-admin/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"github.com/luskaner/aoe2DELanServer/cfgAdmin/internal"
"github.com/luskaner/aoe2DELanServer/cfgAdmin/internal/cmd"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion launcher-config/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/spf13/cobra v1.8.1
golang.org/x/sys v0.21.0
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.2
github.com/luskaner/aoe2DELanServer/launcherCommon v1.2.0-rc.2
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.2
)

require (
Expand Down
5 changes: 2 additions & 3 deletions launcher-config/internal/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ 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/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"net"
"time"
)
Expand Down
6 changes: 3 additions & 3 deletions launcher-config/internal/cmd/revert.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"github.com/luskaner/aoe2DELanServer/cfg/internal"
"github.com/luskaner/aoe2DELanServer/cfg/internal/userData"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/cmd"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/cmd"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"github.com/spf13/cobra"
"golang.org/x/sys/windows"
"os"
Expand Down
6 changes: 3 additions & 3 deletions launcher-config/internal/cmd/setUp.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/luskaner/aoe2DELanServer/cfg/internal/userData"
"github.com/luskaner/aoe2DELanServer/common"
commonProcess "github.com/luskaner/aoe2DELanServer/common/process"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/cmd"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/cmd"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"github.com/spf13/cobra"
"golang.org/x/sys/windows"
"os"
Expand Down
2 changes: 1 addition & 1 deletion launcher-config/internal/errors.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package internal

import (
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion launcher-config/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"
"github.com/luskaner/aoe2DELanServer/cfg/internal/cmd"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
)

const version = "development"
Expand Down
2 changes: 1 addition & 1 deletion launcher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ should help you understand the options.
## Exit Codes

* [Base codes](/common/errors.go).
* [Launcher shared codes](/launcherCommon/errors.go).
* [Launcher shared codes](/launcher-common/errors.go).
* [Launcher codes](internal/errors.go).
2 changes: 1 addition & 1 deletion launcher/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"github.com/inconshreveable/mousetrap"
"github.com/luskaner/aoe2DELanServer/common"
"github.com/luskaner/aoe2DELanServer/common/pidLock"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"github.com/luskaner/aoe2DELanServer/launcher/internal"
"github.com/luskaner/aoe2DELanServer/launcher/internal/cmd"
"github.com/luskaner/aoe2DELanServer/launcher/internal/server"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"golang.org/x/sys/windows"
Expand Down
2 changes: 1 addition & 1 deletion launcher/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/spf13/viper v1.19.0
golang.org/x/sys v0.20.0
github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.2
github.com/luskaner/aoe2DELanServer/launcherCommon v1.2.0-rc.2
github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.2
)

require (
Expand Down
2 changes: 1 addition & 1 deletion launcher/internal/cmd/cert.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package cmd
import (
"fmt"
"github.com/luskaner/aoe2DELanServer/common"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"github.com/luskaner/aoe2DELanServer/launcher/internal"
"github.com/luskaner/aoe2DELanServer/launcher/internal/executor"
"github.com/luskaner/aoe2DELanServer/launcher/internal/server"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
)

func (c *Config) AddCert(canAdd string) (errorCode int) {
Expand Down
2 changes: 1 addition & 1 deletion launcher/internal/cmd/game.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"fmt"
"github.com/luskaner/aoe2DELanServer/common"
commonProcess "github.com/luskaner/aoe2DELanServer/common/process"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"github.com/luskaner/aoe2DELanServer/launcher/internal"
"github.com/luskaner/aoe2DELanServer/launcher/internal/executor"
"github.com/luskaner/aoe2DELanServer/launcher/internal/game"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
"github.com/spf13/viper"
"golang.org/x/sys/windows"
)
Expand Down
4 changes: 2 additions & 2 deletions launcher/internal/cmd/hosts.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"fmt"
mapset "github.com/deckarep/golang-set/v2"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"github.com/luskaner/aoe2DELanServer/launcher/internal"
"github.com/luskaner/aoe2DELanServer/launcher/internal/executor"
"github.com/luskaner/aoe2DELanServer/launcher/internal/server"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
)

func (c *Config) MapHosts(host string, canMap bool) (errorCode int) {
Expand Down
4 changes: 2 additions & 2 deletions launcher/internal/cmd/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"fmt"
mapset "github.com/deckarep/golang-set/v2"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"github.com/luskaner/aoe2DELanServer/launcher/internal"
"github.com/luskaner/aoe2DELanServer/launcher/internal/server"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
"github.com/spf13/viper"
"net"
"sort"
Expand Down
2 changes: 1 addition & 1 deletion launcher/internal/errors.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package internal

import (
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion launcher/internal/executor/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package executor

import (
"github.com/luskaner/aoe2DELanServer/common"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"strconv"
)

Expand Down
4 changes: 2 additions & 2 deletions launcher/internal/executor/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/base64"
mapset "github.com/deckarep/golang-set/v2"
"github.com/luskaner/aoe2DELanServer/common"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
)

func RunSetUp(mapIps mapset.Set[string], addUserCertData []byte, addLocalCertData []byte, backupMetadata bool, backupProfiles bool, exitAgentOnError bool) (result *executor.ExecResult) {
Expand Down
2 changes: 1 addition & 1 deletion launcher/internal/game/executor.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package game

import (
commonExecutor "github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"golang.org/x/sys/windows"
"golang.org/x/sys/windows/registry"
"os"
Expand Down
4 changes: 2 additions & 2 deletions launcher/internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/google/uuid"
"github.com/luskaner/aoe2DELanServer/common"
commonProcess "github.com/luskaner/aoe2DELanServer/common/process"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcherCommon"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"
commonExecutor "github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"golang.org/x/sys/windows"
"net"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion launcher/internal/server/ssl.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"crypto/tls"
"crypto/x509"
"github.com/luskaner/aoe2DELanServer/common"
"github.com/luskaner/aoe2DELanServer/launcherCommon/executor"
"github.com/luskaner/aoe2DELanServer/launcher-common/executor"
"net"
"os"
"path/filepath"
Expand Down
2 changes: 2 additions & 0 deletions server-genCert/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ module github.com/luskaner/aoe2DELanServer/genCert
go 1.22.0

require github.com/spf13/cobra v1.8.1

require github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.2

require (
github.com/deckarep/golang-set/v2 v2.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)
Loading

0 comments on commit b7a3f99

Please sign in to comment.