fixed a logger init issue and added panel url

This commit is contained in:
2021-10-13 17:06:21 -04:00
parent 92f21896f9
commit bf937f7a2e
3 changed files with 12 additions and 3 deletions

View File

@@ -12,6 +12,13 @@ namespace WebAPI.Controllers
[ApiController]
public class HelloWorldController : ControllerBase
{
private readonly PterodactylService _pterodactylService;
public HelloWorldController(PterodactylService pterodactylService)
{
_pterodactylService = pterodactylService;
}
[HttpGet]
public async Task<string> HelloWorld()
{