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 (
"sync"
"dynatron.me/x/stillbox/pkg/gordio/calls"
"dynatron.me/x/stillbox/pkg/calls"
"dynatron.me/x/stillbox/pkg/pb"
)

View file

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

View file

@ -5,7 +5,7 @@ import (
"fmt"
"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"
"github.com/rs/zerolog/log"

View file

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

View file

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

View file

@ -11,7 +11,7 @@ import (
"dynatron.me/x/stillbox/internal/common"
"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/rs/zerolog/log"
)

View file

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