refactor: Refactor Get connections

This commit is contained in:
2024-12-26 14:23:50 +01:00
parent feb47b1f8e
commit e33c270fde
11 changed files with 431 additions and 145 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace ConnectionsAPI.Features.Connections;
public class ConnectionsGroup : Group
{
public ConnectionsGroup()
{
Configure("connections", ep =>
{
ep.AllowAnonymous();
});
}
}