internal/ecsservicediscovery/processor.go (5 lines of code) (raw):

// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT package ecsservicediscovery type Processor interface { Process(cluster string, taskList []*DecoratedTask) ([]*DecoratedTask, error) ProcessorName() string }