Skip to content

Commit

Permalink
Fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
loverajoel committed Sep 29, 2015
1 parent 7021162 commit 8ef3a83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
*/
'use strict'

import Spotify from '../src/Client';
import Client from '../src/Client';
import TrackHandler from '../src/handlers/TrackHandler';
import PlaylistHandler from '../src/handlers/PlaylistHandler';
import ArtistHandler from '../src/handlers/ArtistHandler';

let client = Spotify.instance;
let client = Client.instance;

client.settings = {
clientId: '9b32d53872a446b8854a95d0cfccbf43',
Expand Down
4 changes: 2 additions & 2 deletions examples/oauth.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
*/
'use strict'

import Spotify from '../src/services/Client';
import Client from '../src/services/Client';
import UserHandler from '../src/handlers/UserHandler';
import TrackHandler from '../src/handlers/TrackHandler';
import PlaylistHandler from '../src/handlers/PlaylistHandler';
import ArtistHandler from '../src/handlers/ArtistHandler';

let client = Spotify.instance;
let client = Client.instance;

client.settings = {
clientId: '9b32d53872a446b8854a95d0cfccbf43',
Expand Down

0 comments on commit 8ef3a83

Please sign in to comment.