8 lines
259 B
Go
8 lines
259 B
Go
|
package discovery
|
||
|
|
||
|
import "git.loafle.net/overflow/overflow_discovery/api/module/discovery/model"
|
||
|
|
||
|
func scanPort(host *model.Host, dp *model.DiscoveryPort, resultChan chan *model.Port, errChan chan error, doneChan chan<- struct{}) {
|
||
|
doneChan <- struct{}{}
|
||
|
}
|