go-twitch/api/raids/raids.go

19 lines
230 B
Go

package raids
import (
"net/http"
"net/url"
)
type Raids struct {
client *http.Client
baseUrl *url.URL
}
func New(client *http.Client, baseUrl *url.URL) *Raids {
return &Raids{
client: client,
baseUrl: baseUrl,
}
}