BotSharp/BotSharp.RestApi/IntentController.cs

14 lines
246 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi
{
[Route("v1/[controller]/[action]")]
public class IntentController : ControllerBase
{
2018-09-28 00:49:43 +00:00
}
}