thalos-bff/src/Thalos.Bff.Rest/Endpoints/EndpointConventions.cs
José René White Enciso 9ca6b4c110 feat(stage3): scaffold task-001 baseline
- 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
2026-02-22 01:30:02 -06:00

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";
}