From e1a0fe68e8a76aa8277f7c7a1b63e2495545e622 Mon Sep 17 00:00:00 2001 From: Valentin Boulanger Date: Sat, 24 Jun 2023 12:05:36 +0200 Subject: [PATCH] Creating the main files --- main.js | 3 +++ package.json | 15 +++++++++++++++ src/spotify.js | 7 +++++++ 3 files changed, 25 insertions(+) create mode 100644 main.js create mode 100644 package.json create mode 100644 src/spotify.js 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