Added json tags to NewClientOptions

This commit is contained in:
tyler 2024-02-09 12:17:22 -05:00
parent ca9ecdfd02
commit 3bc2cbfae2

View file

@ -53,9 +53,9 @@ func (c *Client) PrintCookies() error {
}
type NewClientOptions struct {
Cookies []*http.Cookie
StreamKey string
StreamUrl string
Cookies []*http.Cookie `json:"cookies"`
StreamKey string `json:"stream_key"`
StreamUrl string `json:"stream_url"`
}
func NewClient(opts NewClientOptions) (*Client, error) {