main.go 324 B

1234567891011121314
  1. package main
  2. import (
  3. "github.com/opencost/opencost/pkg/cmd"
  4. "github.com/rs/zerolog/log"
  5. )
  6. func main() {
  7. // runs the appropriate application mode using the default cost-model command
  8. // see: github.com/opencost/opencost/pkg/cmd package for details
  9. if err := cmd.Execute(nil); err != nil {
  10. log.Fatal().Err(err)
  11. }
  12. }