move calls

This commit is contained in:
Daniel 2024-08-05 18:11:31 -04:00
parent 2bfc87a36d
commit a7acacda15
8 changed files with 7 additions and 7 deletions

View file

@ -3,7 +3,7 @@ package nexus
import ( import (
"sync" "sync"
"dynatron.me/x/stillbox/pkg/gordio/calls" "dynatron.me/x/stillbox/pkg/calls"
"dynatron.me/x/stillbox/pkg/pb" "dynatron.me/x/stillbox/pkg/pb"
) )

View file

@ -3,7 +3,7 @@ package server
import ( import (
"context" "context"
"dynatron.me/x/stillbox/pkg/gordio/calls" "dynatron.me/x/stillbox/pkg/calls"
) )
func (s *Server) Ingest(ctx context.Context, call *calls.Call) { func (s *Server) Ingest(ctx context.Context, call *calls.Call) {

View file

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"dynatron.me/x/stillbox/internal/common" "dynatron.me/x/stillbox/internal/common"
"dynatron.me/x/stillbox/pkg/gordio/calls" "dynatron.me/x/stillbox/pkg/calls"
"dynatron.me/x/stillbox/pkg/gordio/database" "dynatron.me/x/stillbox/pkg/gordio/database"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"

View file

@ -3,7 +3,7 @@ package sinks
import ( import (
"context" "context"
"dynatron.me/x/stillbox/pkg/gordio/calls" "dynatron.me/x/stillbox/pkg/calls"
"dynatron.me/x/stillbox/pkg/gordio/nexus" "dynatron.me/x/stillbox/pkg/gordio/nexus"
) )

View file

@ -3,7 +3,7 @@ package sinks
import ( import (
"context" "context"
"dynatron.me/x/stillbox/pkg/gordio/calls" "dynatron.me/x/stillbox/pkg/calls"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
) )

View file

@ -11,7 +11,7 @@ import (
"dynatron.me/x/stillbox/internal/common" "dynatron.me/x/stillbox/internal/common"
"dynatron.me/x/stillbox/pkg/gordio/auth" "dynatron.me/x/stillbox/pkg/gordio/auth"
"dynatron.me/x/stillbox/pkg/gordio/calls" "dynatron.me/x/stillbox/pkg/calls"
"github.com/go-chi/chi/v5" "github.com/go-chi/chi/v5"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
) )

View file

@ -3,7 +3,7 @@ package sources
import ( import (
"context" "context"
"dynatron.me/x/stillbox/pkg/gordio/calls" "dynatron.me/x/stillbox/pkg/calls"
"github.com/go-chi/chi/v5" "github.com/go-chi/chi/v5"
) )