package word

type Provider interface {
	Provide() (string, error)
	Ready() (bool, error)
}