You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
475 B
Go
22 lines
475 B
Go
package generator
|
|
|
|
import (
|
|
"github.com/tal-tech/go-zero/tools/goctl/util/console"
|
|
)
|
|
|
|
// DefaultGenerator defines the environment needs of rpc service generation
|
|
type DefaultGenerator struct {
|
|
log console.Console
|
|
}
|
|
|
|
// just test interface implement
|
|
var _ Generator = (*DefaultGenerator)(nil)
|
|
|
|
// NewDefaultGenerator returns an instance of DefaultGenerator
|
|
func NewDefaultGenerator() Generator {
|
|
log := console.NewColorConsole()
|
|
return &DefaultGenerator{
|
|
log: log,
|
|
}
|
|
}
|