stillbox/pkg/gordio/server/ingest.go

12 lines
196 B
Go
Raw Normal View History

2024-08-01 01:01:08 -04:00
package server
import (
"context"
"dynatron.me/x/stillbox/pkg/gordio/calls"
)
func (s *Server) Ingest(ctx context.Context, call *calls.Call) {
2024-08-04 15:29:07 -04:00
s.sinks.EmitCall(context.Background(), call)
2024-08-01 01:01:08 -04:00
}