main.go 228 B

12345678910111213141516
  1. /*
  2. Copyright © 2022 NAME HERE <EMAIL ADDRESS>
  3. */
  4. package main
  5. import (
  6. "kpt-event/cmd"
  7. log "kpt-event/util/logger"
  8. )
  9. func main() {
  10. log.Info("kpe-event: is starting")
  11. cmd.Execute()
  12. log.Error("kpt-event: is shut down")
  13. }