mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
12 lines
208 B
Go
12 lines
208 B
Go
package config
|
|
|
|
import "github.com/zeromicro/go-zero/core/logx"
|
|
|
|
// Config defines a service configure for goctl update
|
|
type Config struct {
|
|
logx.LogConf
|
|
ListenOn string
|
|
FileDir string
|
|
FilePath string
|
|
}
|