mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-04 06:58:37 -04:00
15 lines
299 B
C#
15 lines
299 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Minecraft_Realms_Emulator.Controllers
|
|
{
|
|
[Route("[controller]")]
|
|
[ApiController]
|
|
public class TrialController : ControllerBase
|
|
{
|
|
[HttpGet(Name = "GetTrial")]
|
|
public bool Get() {
|
|
return true;
|
|
}
|
|
}
|
|
}
|