mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-30 22:35:40 +00:00
13 lines
358 B
C#
13 lines
358 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Spacebar.Interop.Replication.Abstractions;
|
|
|
|
namespace Spacebar.GatewayOffload.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("/_spacebar/offload/gateway/LazyRequest")]
|
|
public class Op14Controller : ControllerBase {
|
|
[HttpPost]
|
|
public async IAsyncEnumerable<ReplicationMessage> DoLazyRequest() {
|
|
yield break;
|
|
}
|
|
} |