package namecheck
import (
"fmt"
)
type Validator interface {
IsValid(string) bool
}
type Provider interface {
IsAvailable(string) (bool, error)
type SocialNetwork interface {
fmt.Stringer
Validator
Provider