mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 05:56:46 +08:00

- 简化进度条定位逻辑,移除复杂的光标定位操作 - 优化LogWithProgress协调机制,确保日志与进度条正确交互 - 修复ANSI转义序列被直接输出的问题 - 进度条现在能够在底部原地更新,不再与日志输出争抢显示空间
11 lines
191 B
Go
11 lines
191 B
Go
//go:build !windows
|
|
|
|
package Plugins
|
|
|
|
import "github.com/shadow1ng/fscan/common"
|
|
"github.com/shadow1ng/fscan/common/output"
|
|
|
|
func MiniDump(info *common.HostInfo) (err error) {
|
|
return nil
|
|
}
|