mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
14 lines
327 B
Go
14 lines
327 B
Go
package marathon
|
|
|
|
import (
|
|
"github.com/containous/traefik/types"
|
|
"github.com/gambol99/go-marathon"
|
|
)
|
|
|
|
func (p *Provider) buildConfiguration(applications *marathon.Applications) *types.Configuration {
|
|
if p.TemplateVersion == 1 {
|
|
return p.buildConfigurationV1(applications)
|
|
}
|
|
return p.buildConfigurationV2(applications)
|
|
}
|