Files
worker/checks/cwhois/result.go
Gleb Tv 2c7a0236da feat: publish standalone worker
Separate worker packaging and service lifecycle from the control plane.
2026-07-13 17:55:14 +03:00

15 строки
242 B
Go

// Package cwhois provides functionality.
package cwhois
import (
"github.com/glebtv/whois"
"rsgit.ru/rsmon/rsmon/internal/checkresult"
)
// Result is a result of a check
type Result struct {
checkresult.CheckResult
Raw whois.Result
}