diff --git a/parser.go b/parser.go index 0acdc8f7..63655cd2 100644 --- a/parser.go +++ b/parser.go @@ -42,11 +42,13 @@ func init() { var ( lastupdateFilename string = "lastupdate.tmp" - commentFilename string = "commentsRouter.go" + commentFilename string pkgLastupdate map[string]int64 genInfoList map[string][]ControllerComments ) +const COMMENTFL = "commentsRouter.go" + func init() { pkgLastupdate = make(map[string]int64) genInfoList = make(map[string][]ControllerComments) @@ -54,7 +56,7 @@ func init() { func parserPkg(pkgRealpath, pkgpath string) error { rep := strings.NewReplacer("/", "_", ".", "_") - commentFilename = rep.Replace(pkgpath) + "_" + commentFilename + commentFilename = rep.Replace(pkgpath) + "_" + COMMENTFL if !compareFile(pkgRealpath) { Info(pkgRealpath + " don't has updated") return nil