SwapDude/SWAD.API/Controllers/SwadController.cs
Lisoveliy aebe654c38
Some checks are pending
Deploy / update (push) Waiting to run
Build Project .NET / build (push) Waiting to run
chore: init commit from GitHub
2025-05-12 19:44:33 +03:00

11 lines
268 B
C#

using Microsoft.AspNetCore.Mvc;
namespace SWAD.API.Controllers;
public class SwadController : ProblemsController
{
public static string GetTitleForSwagger(string controllerName, string description)
{
return $"{controllerName}: {description}";
}
}