15 строки
242 B
Go
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
|
|
}
|