Некоторые проверки не удались
CI / test (push) Successful in 2m5s
Docker / Build and publish worker image (push) Failing after 31s
15 строки
247 B
Go
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
|
|
}
|