using Prospect.Server.Api.Services.CloudScript.Models; namespace Prospect.Server.Api.Services.CloudScript.Functions; [CloudScriptFunction("EnterMatchmakingStation")] public class EnterMatchmakingStationFunction : ICloudScriptFunction { public Task ExecuteAsync(FYEnterMatchAzureFunction request) { return Task.FromResult(new FYEnterMatchmakingResult { Success = true, ErrorMessage = "", SingleplayerStation = true, // NOTE: This will always travel to single player station IsMatchTravel = false, }); } }