1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-22 03:38:41 +02:00

chore: optimize import sort and the short description of run cmd (#1211)

* chore: change lowercase to uppercase

* chore: optimize import
This commit is contained in:
Richard 2021-07-19 22:18:36 +08:00 committed by GitHub
parent c2e25ffd11
commit ff24e18a94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -16,8 +16,8 @@ import (
// CmdRun run project command.
var CmdRun = &cobra.Command{
Use: "run",
Short: "run project",
Long: "run project. Example: kratos run",
Short: "Run project",
Long: "Run project. Example: kratos run",
Run: Run,
}

View File

@ -8,6 +8,7 @@ import (
"github.com/go-kratos/kratos/cmd/kratos/v2/internal/proto"
"github.com/go-kratos/kratos/cmd/kratos/v2/internal/run"
"github.com/go-kratos/kratos/cmd/kratos/v2/internal/upgrade"
"github.com/spf13/cobra"
)