2024-08-01 01:01:08 -04:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2024-08-05 18:11:31 -04:00
|
|
|
"dynatron.me/x/stillbox/pkg/calls"
|
2024-08-01 01:01:08 -04:00
|
|
|
)
|
|
|
|
|
2024-08-23 15:40:10 -04:00
|
|
|
func (s *Server) Ingest(ctx context.Context, call *calls.Call) error {
|
|
|
|
return s.sinks.EmitCall(context.Background(), call)
|
2024-08-01 01:01:08 -04:00
|
|
|
}
|