package main import ( "github.com/micro/go-micro/v2" ) func main() { service := micro.NewService( micro.Name("helloworld"), ) // initialise flags service.Init() // start the service service.Run() }