9 lines
142 B
C#
9 lines
142 B
C#
namespace Backend.Gateway;
|
|
|
|
public static class ApiRoutes
|
|
{
|
|
public const string V1 = "v1";
|
|
|
|
public const string Health = "/health";
|
|
}
|