BotSharp/BotSharp.RestApi/IntentController.cs
2018-09-27 19:49:43 -05:00

14 lines
246 B
C#

using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi
{
[Route("v1/[controller]/[action]")]
public class IntentController : ControllerBase
{
}
}