BotSharp/BotSharp.RestApi/Integrations/AmazonAlexaController.cs

13 lines
255 B
C#
Raw Normal View History

2018-07-17 16:22:31 +00:00
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
2018-07-19 01:56:17 +00:00
namespace BotSharp.RestApi.Integrations
2018-07-17 16:22:31 +00:00
{
[Route("v1/[controller]/[action]")]
2018-07-19 01:56:17 +00:00
public class AmazonAlexaController : ControllerBase
2018-07-17 16:22:31 +00:00
{
}
}