go-twitch/api.go

10 lines
187 B
Go
Raw Permalink Normal View History

2024-02-27 22:13:57 -05:00
package twitch
2024-03-04 18:14:38 -05:00
import (
"go.fifitido.net/twitch/api"
)
2024-02-27 22:13:57 -05:00
2024-03-07 19:06:02 -05:00
func NewAPI(clientId, clientSecret, redirectUri string) *api.API {
return api.NewDefault(clientId, clientSecret, redirectUri)
2024-02-27 22:13:57 -05:00
}