コード例 #1
0
ファイル: filechecker.go プロジェクト: netantho/mig
func init() {
	mig.RegisterModule("filechecker", func() interface{} {
		return new(Runner)
	})
}
コード例 #2
0
ファイル: agentdestroy.go プロジェクト: netantho/mig
func init() {
	mig.RegisterModule("agentdestroy", func() interface{} {
		return new(Runner)
	})
}
コード例 #3
0
ファイル: netstat.go プロジェクト: netantho/mig
func init() {
	mig.RegisterModule("netstat", func() interface{} {
		return new(Runner)
	})
}
コード例 #4
0
ファイル: example.go プロジェクト: netantho/mig
// init is called by the Go runtime at startup. We use this function to
// register the module in a global array of available modules, so the
// agent knows we exist
func init() {
	mig.RegisterModule("example", func() interface{} {
		return new(Runner)
	})
}