refactor(mod): Change module name

This commit is contained in:
Björn Benouarets
2025-11-12 22:32:39 +01:00
parent b8964d7763
commit 795675aa1d
4 changed files with 10 additions and 10 deletions

2
go.mod
View File

@@ -1,4 +1,4 @@
module wol-sol-agent
module wolsol-agent
go 1.25.3

View File

@@ -5,10 +5,10 @@ import (
"os/signal"
"time"
"wol-sol-agent/auth"
"wol-sol-agent/config"
"wol-sol-agent/server"
"wol-sol-agent/utils"
"wolsol-agent/auth"
"wolsol-agent/config"
"wolsol-agent/server"
"wolsol-agent/utils"
"git.secnex.io/secnex/masterlog"
)

View File

@@ -5,8 +5,8 @@ import (
"net/http"
"time"
"wol-sol-agent/auth"
"wol-sol-agent/system"
"wolsol-agent/auth"
"wolsol-agent/system"
"git.secnex.io/secnex/masterlog"
)

View File

@@ -6,9 +6,9 @@ import (
"net"
"time"
"wol-sol-agent/auth"
"wol-sol-agent/magicpacket"
"wol-sol-agent/system"
"wolsol-agent/auth"
"wolsol-agent/magicpacket"
"wolsol-agent/system"
"git.secnex.io/secnex/masterlog"
)