cleanup
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m26s

This commit is contained in:
Lee
2024-04-13 18:02:46 +01:00
parent a1755948c1
commit edb02c2ba1
6 changed files with 10 additions and 5 deletions

View File

@ -1,5 +1,6 @@
package cc.fascinated.model.cache;
import cc.fascinated.common.CacheInformation;
import cc.fascinated.model.player.Player;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Getter;
@ -19,7 +20,7 @@ import java.util.UUID;
@Setter @Getter
@NoArgsConstructor
@RedisHash(value = "player", timeToLive = 60L * 60L) // 1 hour (in seconds)
public final class CachedPlayer extends CachedResponse implements Serializable {
public class CachedPlayer extends CachedResponse implements Serializable {
/**
* The unique id of the player.
*/