fix:_renamed import path to volker-raschek

This commit is contained in:
2020-01-19 13:30:47 +01:00
parent 671a3eb748
commit 8cc232adc1
40 changed files with 100 additions and 129 deletions

View File

@ -4,7 +4,7 @@ import (
"context"
"github.com/Masterminds/semver"
"github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/types"
)
type Database interface {

View File

@ -10,7 +10,7 @@ import (
"github.com/Masterminds/semver"
"github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/types"
// PostgreSQL lib
_ "github.com/lib/pq"

View File

@ -7,10 +7,10 @@ import (
"testing"
"github.com/Masterminds/semver"
"github.com/go-flucky/flucky/pkg/storage/db"
"github.com/go-flucky/flucky/pkg/types"
"github.com/go-flucky/flucky/test/goldenfiles"
"github.com/stretchr/testify/require"
"github.com/volker-raschek/flucky/pkg/storage/db"
"github.com/volker-raschek/flucky/pkg/types"
"github.com/volker-raschek/flucky/test/goldenfiles"
)
type test struct {

View File

@ -8,8 +8,8 @@ import (
"strconv"
"time"
"github.com/go-flucky/flucky/pkg/internal/format"
"github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/internal/format"
"github.com/volker-raschek/flucky/pkg/types"
)
type csvLogfile struct {

View File

@ -1,7 +1,7 @@
package logfile
import (
"github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/types"
)
// Logfile is an interface for various logfiles

View File

@ -6,7 +6,7 @@ import (
"os"
"path/filepath"
"github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/types"
)
type jsonLogfile struct {

View File

@ -3,7 +3,7 @@ package logfile
import (
"encoding/xml"
"github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/types"
)
// MeasuredValues is an XML Wrapper for an array of measured values

View File

@ -6,7 +6,7 @@ import (
"os"
"path/filepath"
"github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/types"
)
type xmlLogfile struct {

View File

@ -7,10 +7,10 @@ import (
"net/url"
"sort"
"github.com/go-flucky/flucky/pkg/internal/format"
"github.com/go-flucky/flucky/pkg/storage/db"
"github.com/go-flucky/flucky/pkg/storage/logfile"
"github.com/go-flucky/flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/internal/format"
"github.com/volker-raschek/flucky/pkg/storage/db"
"github.com/volker-raschek/flucky/pkg/storage/logfile"
"github.com/volker-raschek/flucky/pkg/types"
)
// Compression the measured values. The system checks whether the measured values

View File

@ -3,8 +3,8 @@ package storage_test
import (
"testing"
"github.com/go-flucky/flucky/pkg/storage"
"github.com/go-flucky/flucky/test/goldenfiles"
"github.com/volker-raschek/flucky/pkg/storage"
"github.com/volker-raschek/flucky/test/goldenfiles"
"github.com/stretchr/testify/require"
)