mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-28 11:30:15 +00:00
17 lines
445 B
Go
17 lines
445 B
Go
package discovery
|
|
|
|
import "context"
|
|
|
|
const (
|
|
ProductPVE = productPVE
|
|
ProductPMG = productPMG
|
|
ProductPBS = productPBS
|
|
)
|
|
|
|
func (s *Scanner) ProbeProxmoxService(ctx context.Context, ip string, port int) *ProxmoxProbeResult {
|
|
return s.probeProxmoxService(ctx, ip, port)
|
|
}
|
|
|
|
func (s *Scanner) ProbeAPIEndpoint(ctx context.Context, address, endpoint string) EndpointProbeFinding {
|
|
return s.probeAPIEndpoint(ctx, s.httpClient, address, endpoint)
|
|
}
|