aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Swagger/ApiConvention.cs
blob: dbf0b2fe58fffcc71bba046fd9af372e8d3ef6ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Microsoft.AspNetCore.Mvc;

[assembly: ApiConventionType(typeof(Timeline.Controllers.ApiConvention))]

namespace Timeline.Controllers
{
    // There is some bug if nullable is enable. So disable it.
#nullable disable
    /// <summary>
    /// My api convention.
    /// </summary>
    public static class ApiConvention
    {
    }
}