-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce universal profile entity Remove fs-based capes serving Rework management API Rework Redis storage schema Reducing amount of the bus emitter usage
- Loading branch information
1 parent
dac5e49
commit dac3ca9
Showing
32 changed files
with
1,923 additions
and
2,350 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package db | ||
|
||
type Profile struct { | ||
// Uuid contains user's UUID without dashes in lower case | ||
Uuid string | ||
// Username contains user's username with the original casing | ||
Username string | ||
// SkinUrl contains a valid URL to user's skin or an empty string in case the user doesn't have a skin | ||
SkinUrl string | ||
// SkinModel contains skin's model. It will be empty when the model is default | ||
SkinModel string | ||
// CapeUrl contains a valid URL to user's skin or an empty string in case the user doesn't have a cape | ||
CapeUrl string | ||
// MojangTextures contains the original textures value from Mojang's skinsystem | ||
MojangTextures string | ||
// MojangSignature contains the original textures signature from Mojang's skinsystem | ||
MojangSignature string | ||
} |
Oops, something went wrong.