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.
28 lines
495 B
Go
28 lines
495 B
Go
package gen
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
)
|
|
|
|
const configTemplate = `package config
|
|
|
|
import "github.com/tal-tech/go-zero/rpcx"
|
|
|
|
type Config struct {
|
|
rpcx.RpcServerConf
|
|
}
|
|
`
|
|
|
|
func (g *defaultRpcGenerator) genConfig() error {
|
|
configPath := g.dirM[dirConfig]
|
|
fileName := filepath.Join(configPath, fileConfig)
|
|
if util.FileExists(fileName) {
|
|
return nil
|
|
}
|
|
return ioutil.WriteFile(fileName, []byte(configTemplate), os.ModePerm)
|
|
}
|