Skip to content

Commit

Permalink
Fix LRU import
Browse files Browse the repository at this point in the history
  • Loading branch information
kz26 committed Jul 12, 2014
1 parent 34fcba7 commit 6ddf716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import "net/url"
import "log"
import "os"
import "time"
import "lru" // https://github.com/golang/groupcache/blob/master/lru/lru.go
import "github.com/golang/groupcache/lru"
import "strings"
import "github.com/grafov/m3u8"

Expand Down Expand Up @@ -171,4 +171,4 @@ func main() {
msChan := make(chan *Download, 1024)
go getPlaylist(flag.Arg(0), *duration, *useLocalTime, msChan)
downloadSegment(flag.Arg(1), msChan, *duration)
}
}

0 comments on commit 6ddf716

Please sign in to comment.