Skip to content

Commit

Permalink
Fix module name
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatolyRugalev committed Aug 31, 2020
1 parent dfce870 commit 4dca628
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion cmd/client.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmd

import (
"ktunnel/pkg/client"
"github.com/omrikiei/ktunnel/pkg/client"
"os"
"os/signal"
"sync"
Expand Down
4 changes: 2 additions & 2 deletions cmd/expose.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package cmd

import (
"github.com/omrikiei/ktunnel/pkg/client"
"github.com/omrikiei/ktunnel/pkg/k8s"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"ktunnel/pkg/client"
"ktunnel/pkg/k8s"
"os"
"os/signal"
"strconv"
Expand Down
4 changes: 2 additions & 2 deletions cmd/inject.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package cmd

import (
"github.com/omrikiei/ktunnel/pkg/client"
"github.com/omrikiei/ktunnel/pkg/k8s"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"ktunnel/pkg/client"
"ktunnel/pkg/k8s"
"os"
"os/signal"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion cmd/server.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmd

import (
"github.com/omrikiei/ktunnel/pkg/server"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"ktunnel/pkg/server"
)

var CertFile string
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module ktunnel
module github.com/omrikiei/ktunnel

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"ktunnel/cmd"
"github.com/omrikiei/ktunnel/cmd"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions pkg/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package client
import (
"fmt"
"github.com/google/uuid"
"github.com/omrikiei/ktunnel/pkg/common"
pb "github.com/omrikiei/ktunnel/tunnel_pb"
log "github.com/sirupsen/logrus"
"golang.org/x/net/context"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"io"
"ktunnel/pkg/common"
pb "ktunnel/tunnel_pb"
"net"
"strings"
"sync"
Expand Down
2 changes: 1 addition & 1 deletion pkg/k8s/exposer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ package k8s

import (
"errors"
"github.com/omrikiei/ktunnel/pkg/common"
log "github.com/sirupsen/logrus"
v12 "k8s.io/api/core/v1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/intstr"
"ktunnel/pkg/common"
"time"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"errors"
"fmt"
"github.com/google/uuid"
"github.com/omrikiei/ktunnel/pkg/common"
pb "github.com/omrikiei/ktunnel/tunnel_pb"
log "github.com/sirupsen/logrus"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"ktunnel/pkg/common"
pb "ktunnel/tunnel_pb"
"net"
"strings"
)
Expand Down

0 comments on commit 4dca628

Please sign in to comment.