diff --git a/main.js b/main.js new file mode 100644 index 0000000..75e85b5 --- /dev/null +++ b/main.js @@ -0,0 +1,3 @@ +const Spotify = require('./src/spotify.js') + +var spotifyController = new Spotify() \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..1ce6668 --- /dev/null +++ b/package.json @@ -0,0 +1,15 @@ +{ + "name": "spotifycontroller", + "version": "0.1.0", + "description": "Get all the spotify data with NodeJS!", + "main": "main.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://factory.vbprojects.fr/thinkode/SpotifyController.git" + }, + "author": "V. Boulanger", + "license": "ISC" +} diff --git a/src/spotify.js b/src/spotify.js new file mode 100644 index 0000000..6b3ae8b --- /dev/null +++ b/src/spotify.js @@ -0,0 +1,7 @@ + + +class SpotifyController { + +} + +module.exports = SpotifyController; \ No newline at end of file