패키지 경로 수정

This commit is contained in:
2023-05-22 02:13:03 +09:00
parent 0090e645b6
commit 84e09204c3
12 changed files with 109 additions and 121 deletions

View File

@ -2,13 +2,15 @@ package server
import (
"encoding/json"
"go-ayo/logger"
"houston/shared"
"io"
"net/http"
"os"
"path"
"time"
"repositories.action2quare.com/ayo/go-ayo/logger"
"repositories.action2quare.com/ayo/houston/shared"
)
func (h *houstonHandler) GetAgents(w http.ResponseWriter, r *http.Request) {

View File

@ -1,13 +1,14 @@
package server
import (
"go-ayo/common"
"go-ayo/logger"
"io"
"net/http"
"reflect"
"runtime/debug"
"strings"
"repositories.action2quare.com/ayo/go-ayo/common"
"repositories.action2quare.com/ayo/go-ayo/logger"
)
const (

View File

@ -2,7 +2,8 @@ package server
import (
"context"
"houston/shared/protos"
"repositories.action2quare.com/ayo/houston/shared/protos"
)
type monitorServer struct {

View File

@ -4,11 +4,13 @@ import (
"context"
"encoding/json"
"fmt"
"go-ayo/logger"
"houston/shared"
"houston/shared/protos"
"reflect"
"sync"
"repositories.action2quare.com/ayo/go-ayo/logger"
"repositories.action2quare.com/ayo/houston/shared"
"repositories.action2quare.com/ayo/houston/shared/protos"
)
type opdef struct {

View File

@ -2,10 +2,11 @@ package server
import (
"fmt"
"houston/shared"
"houston/shared/protos"
"net"
"repositories.action2quare.com/ayo/houston/shared"
"repositories.action2quare.com/ayo/houston/shared/protos"
"google.golang.org/grpc"
)