mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-14 18:30:02 +08:00
11 lines
129 B
Go
11 lines
129 B
Go
|
|
package config
|
||
|
|
|
||
|
|
import "zero/core/logx"
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
logx.LogConf
|
||
|
|
ListenOn string
|
||
|
|
FileDir string
|
||
|
|
FilePath string
|
||
|
|
}
|