[fix] Changed module name

This commit is contained in:
Piotr Biernat 2021-11-15 16:33:31 +01:00
parent 8a4429cb3f
commit 92fb8356f1
6 changed files with 18 additions and 21 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module vegvisir module git.pbiernat.dev/golang/vegvisir
go 1.17 go 1.17

2
pkg/cache/cache.go vendored
View File

@ -10,8 +10,8 @@
package cache package cache
import ( import (
"git.pbiernat.dev/golang/vegvisir/pkg/config"
"log" "log"
"vegvisir/pkg/config"
) )
const ( const (

View File

@ -10,12 +10,11 @@
package cache package cache
import ( import (
"github.com/go-redis/redis"
"log" "log"
"os" "os"
"strconv" "strconv"
"time" "time"
"github.com/go-redis/redis"
) )
// NewRedisDatastore function // NewRedisDatastore function

View File

@ -11,14 +11,14 @@ package main
import ( import (
"flag" "flag"
"git.pbiernat.dev/golang/vegvisir/pkg/server"
"log" "log"
"net/http" "net/http"
_ "net/http/pprof"
"os" "os"
"runtime" "runtime"
"runtime/pprof" "runtime/pprof"
"vegvisir/pkg/server"
) )
import _ "net/http/pprof"
var ( var (
cPath = flag.String("c", "vegvisir.json", "Path to config file") cPath = flag.String("c", "vegvisir.json", "Path to config file")

View File

@ -1,4 +1,3 @@
// ___ ____ ___ ___ // ___ ____ ___ ___
// \ \ / / | _ | __| \ \ / / || | __ || || _ | // \ \ / / | _ | __| \ \ / / || | __ || || _ |
// \ \/ / |___ | |__ \ \/ / || |___ || ||___| // \ \/ / |___ | |__ \ \/ / || |___ || ||___|
@ -12,11 +11,11 @@ package server
import ( import (
"fmt" "fmt"
"git.pbiernat.dev/golang/vegvisir/pkg/cache"
"git.pbiernat.dev/golang/vegvisir/pkg/config"
"log" "log"
"regexp" "regexp"
"strings" "strings"
"vegvisir/pkg/cache"
"vegvisir/pkg/config"
) )
// Router struct // Router struct

View File

@ -12,15 +12,14 @@ package server
import ( import (
"context" "context"
"fmt" "fmt"
"git.pbiernat.dev/golang/vegvisir/pkg/cache"
"git.pbiernat.dev/golang/vegvisir/pkg/config"
"github.com/valyala/fasthttp"
"log" "log"
"os" "os"
"os/signal" "os/signal"
"syscall" "syscall"
"time" "time"
"vegvisir/pkg/cache"
"vegvisir/pkg/config"
"github.com/valyala/fasthttp"
) )
const ( const (