Fix paths

This commit is contained in:
Oliver
2026-01-06 15:09:21 +01:00
parent e018bedca3
commit 2d6a0b9862
6 changed files with 7 additions and 5 deletions

View File

@@ -3,8 +3,8 @@ package builtinevents
import ( import (
"log/slog" "log/slog"
"git.fancyinnovations.com/fancyanalytics/go-sdk/client"
"github.com/OliverSchlueter/goutils/sloki" "github.com/OliverSchlueter/goutils/sloki"
"github.com/fancyinnovations/fancyanalytics/integrations/go-sdk/client"
) )
func ServiceStarted(service string) { func ServiceStarted(service string) {

2
go.sum
View File

@@ -1,2 +1,4 @@
github.com/OliverSchlueter/goutils v0.0.24 h1:PSca6xnk3K1+zy77Iz98Jh4DBJkrO9kzFG7I3kfO1+s=
github.com/OliverSchlueter/goutils v0.0.24/go.mod h1:Kf8k9AaaATGm6D/IVJkIfVZ4sUTXzHfy/cLQdpejFXE= github.com/OliverSchlueter/goutils v0.0.24/go.mod h1:Kf8k9AaaATGm6D/IVJkIfVZ4sUTXzHfy/cLQdpejFXE=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=

View File

@@ -5,7 +5,7 @@ import (
"sync" "sync"
"time" "time"
"github.com/fancyinnovations/fancyanalytics/integrations/go-sdk/client" "git.fancyinnovations.com/fancyanalytics/go-sdk/client"
) )
type Service struct { type Service struct {

View File

@@ -4,8 +4,8 @@ import (
"log/slog" "log/slog"
"time" "time"
"git.fancyinnovations.com/fancyanalytics/go-sdk/client"
"github.com/OliverSchlueter/goutils/sloki" "github.com/OliverSchlueter/goutils/sloki"
"github.com/fancyinnovations/fancyanalytics/integrations/go-sdk/client"
) )
type Service struct { type Service struct {

View File

@@ -1,5 +1,5 @@
package metriccollector package metriccollector
import "github.com/fancyinnovations/fancyanalytics/integrations/go-sdk/client" import "git.fancyinnovations.com/fancyanalytics/go-sdk/client"
type MetricProvider func() ([]client.RecordData, error) type MetricProvider func() ([]client.RecordData, error)

View File

@@ -4,7 +4,7 @@ import (
"runtime" "runtime"
"time" "time"
"github.com/fancyinnovations/fancyanalytics/integrations/go-sdk/client" "git.fancyinnovations.com/fancyanalytics/go-sdk/client"
) )
type Service struct { type Service struct {