config.go 207 B

1234567891011
  1. package config
  2. import "github.com/tal-tech/go-zero/core/logx"
  3. // Config defines a service configure for goctl update
  4. type Config struct {
  5. logx.LogConf
  6. ListenOn string
  7. FileDir string
  8. FilePath string
  9. }