0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 13:52:38 +00:00

Use existing dependency fs-extra instead of adding new one

This commit is contained in:
Trevor Buckner
2023-12-04 22:28:48 -05:00
parent db0f75c852
commit e9a76dd018

View File

@@ -8,7 +8,7 @@ const express = require('express');
const yaml = require('js-yaml');
const app = express();
const config = require('./config.js');
const fs = require('fs');
const fs = require('fs-extra');
const { homebrewApi, getBrew } = require('./homebrew.api.js');
const GoogleActions = require('./googleActions.js');