mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
14 lines
307 B
Go
14 lines
307 B
Go
package mesos
|
|
|
|
import (
|
|
"github.com/containous/traefik/types"
|
|
"github.com/mesosphere/mesos-dns/records/state"
|
|
)
|
|
|
|
func (p *Provider) buildConfiguration(tasks []state.Task) *types.Configuration {
|
|
if p.TemplateVersion == 1 {
|
|
return p.buildConfigurationV1(tasks)
|
|
}
|
|
return p.buildConfigurationV2(tasks)
|
|
}
|