13 lines
249 B
C#
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 ViberController : ControllerBase
|
|
{
|
|
}
|
|
}
|