Refactor dispatch (now called HTTP) server (pt. 1)

This commit is contained in:
KingRainbow44
2022-05-13 11:39:40 -04:00
Unverified
parent a0067b664e
commit 840f4706b5
17 changed files with 828 additions and 67 deletions
@@ -0,0 +1,6 @@
package emu.grasscutter.server.http.objects;
public class LoginTokenRequestJson {
public String uid;
public String token;
}