Creating the main files
This commit is contained in:
3
main.js
Normal file
3
main.js
Normal file
@@ -0,0 +1,3 @@
|
||||
const Spotify = require('./src/spotify.js')
|
||||
|
||||
var spotifyController = new Spotify()
|
||||
15
package.json
Normal file
15
package.json
Normal 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
7
src/spotify.js
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
|
||||
class SpotifyController {
|
||||
|
||||
}
|
||||
|
||||
module.exports = SpotifyController;
|
||||
Reference in New Issue
Block a user