stillbox/pkg/gordio/server/ingest.go
2024-08-14 09:32:53 -04:00

11 lines
189 B
Go

package server
import (
"context"
"dynatron.me/x/stillbox/pkg/calls"
)
func (s *Server) Ingest(ctx context.Context, call *calls.Call) {
s.sinks.EmitCall(context.Background(), call)
}