14 lines
244 B
C#
14 lines
244 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.RestApi
|
|
{
|
|
[Route("v1/[controller]/[action]")]
|
|
public class ConversationController : ControllerBase
|
|
{
|
|
|
|
}
|
|
}
|