diff options
Diffstat (limited to 'lib/remotes/git.js')
| -rw-r--r-- | lib/remotes/git.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/remotes/git.js b/lib/remotes/git.js index 32230ae..f6d0c07 100644 --- a/lib/remotes/git.js +++ b/lib/remotes/git.js @@ -1,12 +1,12 @@ -const { exec } = require('child_process'); -const { promisify } = require('util'); +import { exec } from 'child_process'; +import { promisify } from 'util'; const internals = { // Promisified functions exec: promisify(exec), }; -module.exports = { +export default { canHandle() { // For the future: actually check if it's a valid git url |