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 SlackController : ControllerBase
|
2018-07-17 16:22:31 +00:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|