main.go 329 B

1234567891011121314151617
  1. package main
  2. import (
  3. "os"
  4. "github.com/kubecost/cost-model/pkg/cmd"
  5. "k8s.io/klog"
  6. )
  7. func main() {
  8. // runs the appropriate application mode using the default cost-model command
  9. // see: github.com/kubecost/cost-model/pkg/cmd package for details
  10. if err := cmd.Execute(nil); err != nil {
  11. klog.Fatal(err)
  12. os.Exit(1)
  13. }
  14. }