18 lines
318 B
C#
18 lines
318 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.RestApi
|
|
{
|
|
[Route("v1/[controller]/[action]")]
|
|
public class FacebookMessengerController : ControllerBase
|
|
{
|
|
[HttpGet]
|
|
public void Facebook()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|