birthdaybot/client/options.go
2023-07-11 16:29:57 +02:00

17 lines
305 B
Go

package client
type Option func(*Client) *Client
func WithURL(url string) Option {
return func(client *Client) *Client {
client.url = url
return client
}
}
func WithHeaders(headers map[string]string) Option {
return func(client *Client) *Client {
client.headers = headers
return client
}
}