github.com/replit/upm@v0.0.0-20240423230255-9ce4fc3ea24c/cmd/upm/main.go (about)

     1  // Package main implements the UPM binary. It is the only
     2  // public-facing entry point to UPM, since UPM's Go packages are all
     3  // internal.
     4  package main
     5  
     6  import "github.com/replit/upm/internal/cli"
     7  
     8  // Main entry point for the UPM binary.
     9  func main() {
    10  	cli.DoCLI()
    11  }