go-twitch/api/users/users.go

19 lines
230 B
Go
Raw Normal View History

2024-03-03 18:34:26 -05:00
package users
import (
"net/http"
"net/url"
)
type Users struct {
client *http.Client
baseUrl *url.URL
}
func New(client *http.Client, baseUrl *url.URL) *Users {
return &Users{
client: client,
baseUrl: baseUrl,
}
}