package protocol import ( "context" "github.com/fnproject/fn/api/runner/task" ) // DefaultProtocol is the protocol used by cold-containers type DefaultProtocol struct { } func (p *DefaultProtocol) IsStreamable() bool { return false } func (p *DefaultProtocol) Dispatch(context.Context, *task.Config) error { return nil }