8 lines
265 B
Go
8 lines
265 B
Go
package discovery
|
|
|
|
import "git.loafle.net/overflow/overflow_discovery/api/module/discovery/model"
|
|
|
|
func scanService(port *model.Port, ds *model.DiscoveryService, resultChan chan interface{}, errChan chan error, doneChan chan<- struct{}) {
|
|
doneChan <- struct{}{}
|
|
}
|