package main import ( "context" "io" ) type SlackIngestion struct { slackToMessage Pipeline } func NewSlackIngestion(ctx context.Context, driver Driver) (SlackIngestion, error) { return SlackIngestion{}, io.EOF }