Split API into its own project

This commit is contained in:
jvyden 2022-05-14 16:46:28 -04:00
parent 2aa803f69f
commit 47271d1798
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
16 changed files with 336 additions and 162 deletions

View file

@ -22,7 +22,7 @@ public class LighthouseServerTest
public LighthouseServerTest()
{
this.Server = new TestServer(new WebHostBuilder().UseStartup<TestStartup>());
this.Server = new TestServer(new WebHostBuilder().UseStartup<TestGameApiStartup>());
this.Client = this.Server.CreateClient();
}
public async Task<HttpResponseMessage> AuthenticateResponse(int number = -1, bool createUser = true)