Creating the main files

This commit is contained in:
2023-06-24 12:05:36 +02:00
parent 0800ebeb70
commit e1a0fe68e8
3 changed files with 25 additions and 0 deletions

3
main.js Normal file
View File

@@ -0,0 +1,3 @@
const Spotify = require('./src/spotify.js')
var spotifyController = new Spotify()

15
package.json Normal file
View File

@@ -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"
}

7
src/spotify.js Normal file
View File

@@ -0,0 +1,7 @@
class SpotifyController {
}
module.exports = SpotifyController;