ecliptica routes

This commit is contained in:
bogap 2024-10-12 13:39:15 +03:00
parent fd293711a2
commit c7a3c06f60
5 changed files with 2 additions and 3 deletions

View File

@ -2,4 +2,5 @@ const router = require('express').Router();
const plantsRouter = require('express').Router(); const plantsRouter = require('express').Router();
module.exports = router; module.exports = router;
router.use('/plants',plantsRouter) router.use('/plants',plantsRouter)

View File

@ -3,5 +3,4 @@ const CONFIG = {
CLIENT_SECRET: 'bJq7Uiwua52tHiLP80N60hALNtQX2wcE4Mj6yNA9OzG2iZbgHuqyeAs6WSWX6MNJdfv0Nqzb7OHta8qPZr4zxWBLTauleaMfraln3xFEvbXLDpi1Lcrwe7DxfgsQQ1E4', CLIENT_SECRET: 'bJq7Uiwua52tHiLP80N60hALNtQX2wcE4Mj6yNA9OzG2iZbgHuqyeAs6WSWX6MNJdfv0Nqzb7OHta8qPZr4zxWBLTauleaMfraln3xFEvbXLDpi1Lcrwe7DxfgsQQ1E4',
}; };
module.exports = CONFIG; module.exports = CONFIG;

View File

@ -13,7 +13,6 @@ app.listen(port, () => {
console.log(`Server is running on port ${port}`); console.log(`Server is running on port ${port}`);
}); });
async function getAccessToken() { async function getAccessToken() {
const formData = new FormData(); const formData = new FormData();
formData.append('grant_type', 'client_credentials'); formData.append('grant_type', 'client_credentials');

View File

@ -13,6 +13,7 @@ const plants = [
frequency: 3, frequency: 3,
startDate: "2024-10-09", startDate: "2024-10-09",
}, },
{ {
name: "Sunflower", name: "Sunflower",
image: "https://avatars.mds.yandex.net/i?id=31da587c9aabc83ad3615023f91d7284781be06c-10701700-images-thumbs&n=13", image: "https://avatars.mds.yandex.net/i?id=31da587c9aabc83ad3615023f91d7284781be06c-10701700-images-thumbs&n=13",

View File

@ -3,7 +3,6 @@ const router = express.Router()
router.use('/enterfront', require('./enterfront/index')) router.use('/enterfront', require('./enterfront/index'))
router.use('/ecliptica', require('./ecliptica/index')) router.use('/ecliptica', require('./ecliptica/index'))
module.exports = router module.exports = router