aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/Endpoints
diff options
context:
space:
mode:
Diffstat (limited to 'code/api/Endpoints')
-rw-r--r--code/api/Endpoints/Storage/TreeEndpoint.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/code/api/Endpoints/Storage/TreeEndpoint.cs b/code/api/Endpoints/Storage/TreeEndpoint.cs
new file mode 100644
index 0000000..857a570
--- /dev/null
+++ b/code/api/Endpoints/Storage/TreeEndpoint.cs
@@ -0,0 +1,9 @@
+namespace I2R.Storage.Api.Endpoints.Storage;
+
+public class TreeEndpoint : EndpointBase
+{
+ [HttpGet("~/storage/tree")]
+ public async Task<ActionResult> Handle(Guid parent = default) {
+ return Ok();
+ }
+} \ No newline at end of file