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,7 @@
package emu.grasscutter.server.http.objects;
public class LoginAccountRequestJson {
public String account;
public String password;
public boolean is_crypto;
}