go-twitch/api/videos/videos.go

19 lines
234 B
Go
Raw Permalink Normal View History

2024-03-03 21:41:49 -05:00
package videos
import (
"net/http"
"net/url"
)
type Videos struct {
client *http.Client
baseUrl *url.URL
}
func New(client *http.Client, baseUrl *url.URL) *Videos {
return &Videos{
client: client,
baseUrl: baseUrl,
}
}