1
1
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2025-04-10 18:08:36 -04:00
MyMcRealms/MyMcRealms/Controllers/TrialController.cs

17 lines
328 B
C#

using Microsoft.AspNetCore.Mvc;
using MyMcRealms.Attributes;
namespace MyMcRealms.Controllers
{
[Route("[controller]")]
[ApiController]
[RequireMinecraftCookie]
public class TrialController : ControllerBase
{
[HttpGet]
public bool GetTrial() {
return false;
}
}
}