go-twitch/api/charity/charity.go

19 lines
238 B
Go

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