package maker type maker struct { workdir string } func NewMaker(workdir string) *maker { return &maker{workdir: workdir} }