mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-07-14 05:12:36 +08:00
Merge branch 'dev' of https://github.com/shadow1ng/fscan into dev
This commit is contained in:
commit
5e06a0b2b7
@ -1,3 +1,5 @@
|
||||
//go:build windows
|
||||
|
||||
package Plugins
|
||||
|
||||
import (
|
||||
|
9
Plugins/DCInfoUnix.go
Normal file
9
Plugins/DCInfoUnix.go
Normal 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
|
||||
}
|
@ -1,3 +1,5 @@
|
||||
//go:build windows
|
||||
|
||||
package Plugins
|
||||
|
||||
import (
|
||||
|
9
Plugins/MiniDumpUnix.go
Normal file
9
Plugins/MiniDumpUnix.go
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user