forked from Fascinated/Bat
re-add caching (featuring Redis!!!!!)
This commit is contained in:
@ -10,6 +10,8 @@ import net.dv8tion.jda.api.entities.Guild;
|
||||
import org.springframework.data.annotation.Id;
|
||||
import org.springframework.data.mongodb.core.mapping.Document;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
@ -18,7 +20,8 @@ import java.util.Date;
|
||||
@RequiredArgsConstructor
|
||||
@Getter @Setter
|
||||
@Document(collection = "guilds")
|
||||
public class BatGuild extends ProfileHolder {
|
||||
public class BatGuild extends ProfileHolder implements Serializable {
|
||||
@Serial private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The ID of the guild
|
||||
|
Reference in New Issue
Block a user