reorg imports

This commit is contained in:
kevin
2020-08-29 14:31:51 +08:00
parent 0f97b2019a
commit 6e3d99e869
3 changed files with 3 additions and 5 deletions

View File

@@ -1,10 +1,9 @@
package command
import (
"github.com/urfave/cli"
"github.com/tal-tech/go-zero/tools/goctl/rpc/ctx"
"github.com/tal-tech/go-zero/tools/goctl/rpc/gen"
"github.com/urfave/cli"
)
func Rpc(c *cli.Context) error {

View File

@@ -6,12 +6,11 @@ import (
"runtime"
"strings"
"github.com/urfave/cli"
"github.com/tal-tech/go-zero/core/logx"
"github.com/tal-tech/go-zero/tools/goctl/util"
"github.com/tal-tech/go-zero/tools/goctl/util/console"
"github.com/tal-tech/go-zero/tools/goctl/util/stringx"
"github.com/urfave/cli"
)
const (

View File

@@ -2,12 +2,12 @@ package gen
import (
"fmt"
"github.com/tal-tech/go-zero/tools/goctl/rpc/execx"
"os"
"os/exec"
"path/filepath"
"strings"
"github.com/tal-tech/go-zero/tools/goctl/rpc/execx"
"github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
"github.com/tal-tech/go-zero/tools/goctl/util"
)