Skip to content

Commit ba9d1f8

Browse files
committed
Rename to speakerdeck-api
1 parent a82b5f9 commit ba9d1f8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

cmd/speakerdeck-api/api.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"strings"
1111
"time"
1212

13-
speakerdeck "github.com/luxas/speakerdeck-scraper"
14-
"github.com/luxas/speakerdeck-scraper/location"
15-
"github.com/luxas/speakerdeck-scraper/scraper"
13+
speakerdeck "github.com/luxas/speakerdeck-api"
14+
"github.com/luxas/speakerdeck-api/location"
15+
"github.com/luxas/speakerdeck-api/scraper"
1616
log "github.com/sirupsen/logrus"
1717
)
1818

@@ -27,7 +27,7 @@ const (
2727
<li>/api/talks/{user-handle}/{talk-id}</li>
2828
</ul>
2929
<br />
30-
<span>Created by Lucas Käldström. Source code at: <a href="https://github.com/luxas/speakerdeck-scraper">github.com/luxas/speakerdeck-scraper</a></span>
30+
<span>Created by Lucas Käldström. Source code at: <a href="https://github.com/luxas/speakerdeck-api">github.com/luxas/speakerdeck-api</a></span>
3131
`
3232
)
3333

location/location.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"strings"
77

88
"github.com/gocolly/colly"
9-
"github.com/luxas/speakerdeck-scraper"
10-
"github.com/luxas/speakerdeck-scraper/scraper"
9+
"github.com/luxas/speakerdeck-api"
10+
"github.com/luxas/speakerdeck-api/scraper"
1111
log "github.com/sirupsen/logrus"
1212
"googlemaps.github.io/maps"
1313
)

talk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync"
1010

1111
"github.com/gocolly/colly"
12-
"github.com/luxas/speakerdeck-scraper/scraper"
12+
"github.com/luxas/speakerdeck-api/scraper"
1313
log "github.com/sirupsen/logrus"
1414
)
1515

user.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sort"
77

88
"github.com/gocolly/colly"
9-
"github.com/luxas/speakerdeck-scraper/scraper"
9+
"github.com/luxas/speakerdeck-api/scraper"
1010
)
1111

1212
// ScrapeUser returns an user object based on the given user handle. In opts,

0 commit comments

Comments
 (0)