This commit is contained in:
ZacharyZcR
2024-12-28 06:39:16 +08:00
4 changed files with 24 additions and 2 deletions
+2
View File
@@ -1,3 +1,5 @@
//go:build windows
package Plugins
import (
+9
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
}
+2
View File
@@ -1,3 +1,5 @@
//go:build windows
package Plugins
import (
+9
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
}