package l_bert
type Option func(*Bert)
// WithHost 修改请求地址
func WithHost(host string) Option {
return func(b *Bert) {
b.host = host
}