15 lines
402 B
C#
15 lines
402 B
C#
using Prospect.Server.Api.Services.CloudScript.Models;
|
|
|
|
namespace Prospect.Server.Api.Services.CloudScript.Functions;
|
|
|
|
[CloudScriptFunction("GetFriendList")]
|
|
public class GetFriendList : ICloudScriptFunction<FYBaseSocialRequest, object?>
|
|
{
|
|
public Task<object?> ExecuteAsync(FYBaseSocialRequest request)
|
|
{
|
|
return Task.FromResult<object?>(new
|
|
{
|
|
|
|
});
|
|
}
|
|
} |