overflow_discovery/discovery/service.go
crusader 2754bbc056 ing
2017-11-18 21:08:08 +09:00

11 lines
312 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{}, stopChan chan struct{}) {
defer func() {
doneChan <- struct{}{}
}()
}