fix: 优化扫描输出,扫描结果结尾换行

This commit is contained in:
xiaobo 2022-11-02 17:29:12 +08:00
parent 38e48ba420
commit fc416545a3
1 changed files with 1 additions and 1 deletions

View File

@ -14,5 +14,5 @@ func main() {
common.Parse(&Info)
Plugins.Scan(Info)
t := time.Now().Sub(start)
fmt.Printf("[*] 扫描结束,耗时: %s", t)
fmt.Printf("[*] 扫描结束,耗时: %s\n", t)
}