1
0
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2024-09-16 15:02:53 -04:00

chore: remove unused using

This commit is contained in:
CyberL1 2024-06-13 10:21:47 +02:00
parent ae057c59bb
commit a25b93ae9f
2 changed files with 2 additions and 3 deletions

View File

@ -8,8 +8,8 @@ namespace MyMcRealms.Controllers
[RequireMinecraftCookie]
public class TrialController : ControllerBase
{
[HttpGet(Name = "GetTrial")]
public bool Get() {
[HttpGet]
public bool GetTrial() {
return false;
}
}

View File

@ -4,7 +4,6 @@ using MyMcRealms.MyMcAPI.Responses;
using MyMcRealms.Responses;
using Newtonsoft.Json;
using Semver;
using System.Text.Json;
namespace MyMcRealms.Controllers
{