fix caching issues

This commit is contained in:
Fran Jurmanović
2025-05-31 21:57:08 +02:00
parent 53bc7f42a3
commit d08695025a
9 changed files with 146 additions and 87 deletions

View File

@@ -1,10 +1,10 @@
package common
import (
"acc-server-manager/local/utl/logging"
"bytes"
"encoding/json"
"fmt"
"log"
"net"
"os"
"os/exec"
@@ -27,7 +27,7 @@ type RouteGroups struct {
func CheckError(err error) {
if err != nil {
log.Printf("Error occured. %v", err)
logging.Error("Error occured. %v", err)
}
}