зеркало из https://github.com/Azure/aks-engine.git
21 строка
430 B
Go
21 строка
430 B
Go
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT license.
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/Azure/aks-engine/cmd"
|
|
colorable "github.com/mattn/go-colorable"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
log.SetFormatter(&log.TextFormatter{ForceColors: true})
|
|
log.SetOutput(colorable.NewColorableStdout())
|
|
if err := cmd.NewRootCmd().Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|