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

13 lines
249 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 SlackController : ControllerBase
{
}
}