1
0
mirror of https://github.com/chris124567/hulu synced 2024-10-31 22:07:30 +00:00

rename hulu directory to prevent problem with go build

This commit is contained in:
Christopher Tarry 2021-11-21 12:08:34 -05:00
parent 5e525f280a
commit ff25377cf1
3 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ func (c Client) PlaybackInformation(id string) (p PlaybackInformation, err error
// the MPD file URL, and information relating to subtitles (Hulu calls them
// transcripts).
func (c Client) Playlist(sessionKey int, eabID string) (p Playlist, err error) {
randUUID := func() (s string) {
randUUID := func() string {
randChars := func(n int) (s string) {
c := []byte("ABCDEF0123456789")
for i := 0; i < 4; i++ {

View File

@ -4,7 +4,7 @@ import (
"bytes"
"encoding/hex"
"fmt"
"github.com/chris124567/hulu/hulu"
hulu "github.com/chris124567/hulu/client"
"github.com/chris124567/hulu/widevine"
"io"
"lukechampine.com/flagg"