This commit is contained in:
ZacharyZcR 2024-12-28 06:39:16 +08:00
commit 5e06a0b2b7
4 changed files with 24 additions and 2 deletions

View File

@ -1,3 +1,5 @@
//go:build windows
package Plugins
import (

9
Plugins/DCInfoUnix.go Normal file
View File

@ -0,0 +1,9 @@
//go:build !windows
package Plugins
import "github.com/shadow1ng/fscan/Common"
func DCInfoScan(info *Common.HostInfo) (err error) {
return nil
}

View File

@ -1,3 +1,5 @@
//go:build windows
package Plugins
import (

9
Plugins/MiniDumpUnix.go Normal file
View File

@ -0,0 +1,9 @@
//go:build !windows
package Plugins
import "github.com/shadow1ng/fscan/Common"
func MiniDump(info *Common.HostInfo) (err error) {
return nil
}