radondb/xenon

[propose]standard code style

hustjieke opened this issue · 0 comments

fix some bad code style, like:

r.lock.Add(1)

should be channed to

r.wg.Add(1)

func (l *LinuxArgs) Start() []string { 

should be changed to

func (l *LinuxArgs) GenerateStartCmd() []string {