Skip to content

Commit

Permalink
Everything HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
KR-Ravindra committed Oct 27, 2023
1 parent 36b401b commit 25b869c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/api/analyzer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
async function AnalyzerList(payload) {
let final_response
try {
const response = await fetch('http://34.105.100.197/api/v1/analyzer/', {
const response = await fetch('https://app.group5.live/api/v1/analyzer/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down
2 changes: 1 addition & 1 deletion src/api/keyword.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
async function keywordList(payload) {
let final_response
try {
const response = await fetch('http://34.105.100.197/api/v1/keyword/', {
const response = await fetch('https://app.group5.live/api/v1/keyword/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down
2 changes: 1 addition & 1 deletion src/api/multiAlgo.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
async function multialgoComparision(payload) {
let final_response
try {
const response = await fetch('http://34.105.100.197/api/v1/multi-algo/', {
const response = await fetch('https://app.group5.live/api/v1/multi-algo/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down
2 changes: 1 addition & 1 deletion src/api/recommendation.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
async function RecommendationList(payload) {
let final_response
try {
const response = await fetch('http://34.105.100.197/api/v1/keyword-recommendations/', {
const response = await fetch('https://app.group5.live/api/v1/keyword-recommendations/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down
2 changes: 1 addition & 1 deletion src/api/scraperText.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
async function scraperText(payload) {
let final_response
try {
const response = await fetch('http://34.105.100.197/api/v1/scraping/', {
const response = await fetch('https://app.group5.live/api/v1/scraping/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down

0 comments on commit 25b869c

Please sign in to comment.