2023-08-12 19:45:19 +00:00
|
|
|
package teslainventory_sdk
|
2023-08-09 12:05:37 +00:00
|
|
|
|
|
|
|
// ClientOptions allows for options to be passed into the Client for customization.
|
|
|
|
type ClientOptions func(*Client)
|
|
|
|
|
|
|
|
// WithUserAgent will force the usage of a specific user agent.
|
|
|
|
func WithUserAgent(userAgent string) ClientOptions {
|
|
|
|
return func(c *Client) {
|
|
|
|
c.userAgent = userAgent
|
|
|
|
}
|
|
|
|
}
|