1
0
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2024-09-19 07:52:52 -04:00

chore: remove function

This commit is contained in:
CyberL1 2024-04-23 17:58:07 +02:00
parent 4af592a543
commit f5c0963473
2 changed files with 2 additions and 16 deletions

View File

@ -3,7 +3,6 @@ using Microsoft.EntityFrameworkCore;
using MyMcRealms.Attributes;
using MyMcRealms.Data;
using MyMcRealms.Entities;
using MyMcRealms.MyMcAPI;
using MyMcRealms.MyMcAPI.Responses;
using MyMcRealms.Requests;
using MyMcRealms.Responses;

View File

@ -13,19 +13,6 @@ namespace MyMcRealms.MyMcAPI
httpClient.BaseAddress = new Uri(ApiUrl);
}
public async Task<HelloResponse?> GetHello()
{
HelloResponse response = await httpClient.GetFromJsonAsync<HelloResponse>("hello");
if (response == null)
{
Console.WriteLine($"error while doing GET /hello");
return null;
}
return response;
}
public async Task<AllServersResponse?> GetAllServers()
{
AllServersResponse response = await httpClient.GetFromJsonAsync<AllServersResponse>($"list_all_servers/{Environment.GetEnvironmentVariable("MYMC_SERVER_LIST_KEY")}");