mirror of
https://github.com/zc2638/drone-k8s-plugin.git
synced 2026-06-04 18:23:47 +08:00
39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
// Copyright © 2022 zc2638 <zc2638@qq.com>.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
_ "time/tzdata"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/zc2638/drone-k8s-plugin/pkg/plugin"
|
|
)
|
|
|
|
func main() {
|
|
logrus.SetFormatter(&logrus.TextFormatter{
|
|
ForceColors: true,
|
|
DisableLevelTruncation: true,
|
|
PadLevelText: true,
|
|
FullTimestamp: true,
|
|
TimestampFormat: "2006/01/02 15:04:05",
|
|
})
|
|
|
|
if err := plugin.NewCommand().Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|