tokers commented on a change in pull request #66:
URL: 
https://github.com/apache/apisix-ingress-controller/pull/66#discussion_r538266693



##########
File path: cmd/cmd.go
##########
@@ -0,0 +1,19 @@
+package cmd
+
+import (
+       "github.com/spf13/cobra"
+
+       "github.com/api7/ingress-controller/cmd/ingress"
+)
+
+// NewAPISIXIngressControllerCommand creates the apisix-ingress-controller 
command.
+func NewAPISIXIngressControllerCommand() *cobra.Command {
+       cmd := &cobra.Command{
+               Use:     "apisix-ingress-controller [command]",
+               Long:    "Yet another Ingress controller for Kubernetes using 
Apache APISIX as the high performance reverse proxy. Please note that all flags 
in this command line is not in use for now, but will be enabled in the near 
future.",
+               Version: "", // TODO: fill the version info.
+       }
+
+       cmd.AddCommand(ingress.NewIngressCommand())
+       return cmd
+}

Review comment:
       It doesn't show the "No new line at end of file"




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to