blob: 857a570c8f761273990c03951dae1a53e051d651 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
namespace I2R.Storage.Api.Endpoints.Storage;
public class TreeEndpoint : EndpointBase
{
[HttpGet("~/storage/tree")]
public async Task<ActionResult> Handle(Guid parent = default) {
return Ok();
}
}
|