github.com/jingruilea/kubeedge@v1.2.0-beta.0.0.20200410162146-4bb8902b3879/edgemesh/cmd/edgemesh.go (about)

     1  package main
     2  
     3  import (
     4  	"flag"
     5  	"github.com/spf13/pflag"
     6  	"k8s.io/klog"
     7  )
     8  
     9  func main() {
    10  	klog.InitFlags(nil)
    11  	pflag.CommandLine.AddGoFlagSet(flag.CommandLine)
    12  	pflag.Parse()
    13  
    14  	// TODO need parse edgemesh config file before Register @kadisi
    15  	//pkg.Register()
    16  }