Skip to content

Commit

Permalink
updated paths
Browse files Browse the repository at this point in the history
  • Loading branch information
gkpty committed Aug 26, 2020
1 parent 6076248 commit 5e3b63a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/records/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require('dotenv').config()
var AWS = require('aws-sdk');
var route53 = new AWS.Route53({apiVersion: '2014-05-15'});
const axios = require('axios');
const getDnsId = require('../getDnsId')
const getDnsId = require('../zones/get')

function aws(domain, records){
return new Promise((resolve, reject) => {
Expand Down
2 changes: 1 addition & 1 deletion lib/records/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require('dotenv').config()
var AWS = require('aws-sdk');
var route53 = new AWS.Route53({apiVersion: '2014-05-15'});
const axios = require('axios');
const getDnsId = require('../getDnsId')
const getDnsId = require('../zones/get')

function aws(domain) {
return new Promise((resolve, reject) => {
Expand Down
2 changes: 1 addition & 1 deletion lib/records/upsert.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require('dotenv').config()
var AWS = require('aws-sdk');
var route53 = new AWS.Route53({apiVersion: '2014-05-15'});
const axios = require('axios');
const getDnsId = require('../getDnsId')
const getDnsId = require('../zones/get')
const listRecords = require('./list')

function aws(domain, records){
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5e3b63a

Please sign in to comment.