mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-14 18:30:02 +08:00
30 lines
502 B
Go
30 lines
502 B
Go
|
|
package gogen
|
||
|
|
|
||
|
|
import (
|
||
|
|
"io/ioutil"
|
||
|
|
"os"
|
||
|
|
"path/filepath"
|
||
|
|
|
||
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
||
|
|
)
|
||
|
|
|
||
|
|
var 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)
|
||
|
|
}
|