Files
worker/checks/cwhois/result.go
Gleb Tv 2c884c5612
Некоторые проверки не удались
CI / test (push) Successful in 2m5s
Docker / Build and publish worker image (push) Failing after 31s
refactor: adopt worker module path
2026-07-13 17:56:12 +03:00

15 строки
247 B
Go

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