...

Source file src/github.com/Microsoft/hcsshim/cmd/ncproxy/main.go

Documentation: github.com/Microsoft/hcsshim/cmd/ncproxy

     1  //go:build windows
     2  
     3  package main
     4  
     5  import (
     6  	"os"
     7  
     8  	"github.com/sirupsen/logrus"
     9  )
    10  
    11  func main() {
    12  	if err := app().Run(os.Args); err != nil {
    13  		logrus.Fatal(err)
    14  	}
    15  }
    16  

View as plain text