...

Source file src/edge-infra.dev/cmd/tools/ci-billing/main.go

Documentation: edge-infra.dev/cmd/tools/ci-billing

     1  package main
     2  
     3  import (
     4  	"os"
     5  
     6  	cibilling "edge-infra.dev/pkg/tools/ci-billing"
     7  )
     8  
     9  func main() {
    10  	if err := cibilling.Run(); err != nil {
    11  		os.Exit(1)
    12  	}
    13  }
    14  

View as plain text