Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
chore: change raw url
Browse files Browse the repository at this point in the history
  • Loading branch information
wdhdev authored Dec 15, 2023
1 parent 685cb10 commit e44e1e8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion endpoints/count.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = async (req, res) => {
let data;

try {
const result = await axios.get("https://raw.freesubdomains.org");
const result = await axios.get("https://free-domains.github.io/raw");

data = result.data;
} catch(err) {
Expand Down
2 changes: 1 addition & 1 deletion endpoints/domains/domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = async (req, res) => {
let data;

try {
const result = await axios.get("https://raw.freesubdomains.org");
const result = await axios.get("https://free-domains.github.io/raw");

data = result.data;
} catch(err) {
Expand Down
2 changes: 1 addition & 1 deletion endpoints/lookup/domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = async (req, res) => {
let data;

try {
const result = await axios.get("https://raw.freesubdomains.org");
const result = await axios.get("https://free-domains.github.io/raw");

data = result.data;
} catch(err) {
Expand Down
2 changes: 1 addition & 1 deletion endpoints/lookup/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = async (req, res) => {
let data;

try {
const result = await axios.get("https://raw.freesubdomains.org");
const result = await axios.get("https://free-domains.github.io/raw");

data = result.data;
} catch(err) {
Expand Down
2 changes: 1 addition & 1 deletion endpoints/raw.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = async (req, res) => {
let data;

try {
const result = await axios.get("https://raw.freesubdomains.org");
const result = await axios.get("https://free-domains.github.io/raw");

data = result.data;
} catch(err) {
Expand Down

0 comments on commit e44e1e8

Please sign in to comment.