Files
2026-03-29 19:56:25 -04:00

11 lines
302 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "Data/API/APIData.h"
FString UAPIData::GetAPIEndPoint(const FGameplayTag& APIEndPoint)
{
const FString ResourceName = Resources.FindChecked(APIEndPoint);
return InvokeUrl + "/" + Stage + "/" + ResourceName;
}