2018-12-03 22:19:18 +03:00
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// Licensed under the MIT license.
|
|
|
|
|
2017-05-10 01:50:19 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Azure/acs-engine/cmd"
|
2018-03-21 02:44:08 +03:00
|
|
|
"github.com/mattn/go-colorable"
|
2017-08-24 02:09:58 +03:00
|
|
|
log "github.com/sirupsen/logrus"
|
2017-05-10 01:50:19 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2018-03-21 02:44:08 +03:00
|
|
|
log.SetFormatter(&log.TextFormatter{ForceColors: true})
|
|
|
|
log.SetOutput(colorable.NewColorableStdout())
|
2017-05-10 01:50:19 +03:00
|
|
|
if err := cmd.NewRootCmd().Execute(); err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
}
|