- WHY: establish Stage 3 task-001 execution baseline per repo intent - WHAT: add minimal solution/project skeleton and boundary docs - RULE: apply stage3 execution runtime and repository workflow directives
13 lines
310 B
C#
13 lines
310 B
C#
namespace Thalos.Bff.Rest.Endpoints;
|
|
|
|
/// <summary>
|
|
/// Defines endpoint conventions for the identity edge API.
|
|
/// </summary>
|
|
public static class EndpointConventions
|
|
{
|
|
/// <summary>
|
|
/// Prefix used by identity edge API routes.
|
|
/// </summary>
|
|
public const string ApiPrefix = "/api/identity";
|
|
}
|