overflow_discovery/discovery/service.go

8 lines
265 B
Go
Raw Normal View History

2017-11-15 12:33:46 +00:00
package discovery
import "git.loafle.net/overflow/overflow_discovery/api/module/discovery/model"
2017-11-16 11:01:42 +00:00
func scanService(port *model.Port, ds *model.DiscoveryService, resultChan chan interface{}, errChan chan error, doneChan chan<- struct{}) {
2017-11-15 12:33:46 +00:00
doneChan <- struct{}{}
}