\CayciV2Bot\CayciV2Bot\Controllers\HomeController.cs
Return Back
using CayciV2Bot.Models;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Diagnostics;
namespace CayciV2Bot.Controllers
{
public class HomeController : Controller
{
[HttpGet]
public IActionResult Index()
{
return View();
}
[HttpGet]
public string CallBack()
{
return "{ timeStamp = " + DateTime.Now.ToString("dd:MM:yyyy:HH:mm:ss") + " }";
}
[HttpGet]
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}
using Microsoft.AspNetCore.Mvc;
using System;
using System.Diagnostics;
namespace CayciV2Bot.Controllers
{
public class HomeController : Controller
{
[HttpGet]
public IActionResult Index()
{
return View();
}
[HttpGet]
public string CallBack()
{
return "{ timeStamp = " + DateTime.Now.ToString("dd:MM:yyyy:HH:mm:ss") + " }";
}
[HttpGet]
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}