BotSharp/BotSharp.RestApi/Integrations/AmazonAlexaController.cs
2018-07-18 20:56:17 -05:00

13 lines
255 B
C#

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