mirror of https://github.com/synctv-org/synctv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
351 B
Go
16 lines
351 B
Go
package aggregations
|
|
|
|
import (
|
|
"github.com/synctv-org/synctv/internal/provider"
|
|
)
|
|
|
|
var allAggregation []provider.AggregationProviderInterface
|
|
|
|
func addAggregation(ps ...provider.AggregationProviderInterface) {
|
|
allAggregation = append(allAggregation, ps...)
|
|
}
|
|
|
|
func AllAggregation() []provider.AggregationProviderInterface {
|
|
return allAggregation
|
|
}
|