mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
11 lines
270 B
Go
11 lines
270 B
Go
package consulcatalog
|
|
|
|
import "github.com/containous/traefik/types"
|
|
|
|
func (p *Provider) buildConfiguration(catalog []catalogUpdate) *types.Configuration {
|
|
if p.TemplateVersion == 1 {
|
|
return p.buildConfigurationV1(catalog)
|
|
}
|
|
return p.buildConfigurationV2(catalog)
|
|
}
|