more cleanup
All checks were successful
deploy / deploy (push) Successful in 42s

This commit is contained in:
Lee
2024-04-08 05:22:54 +01:00
parent 205ae144c0
commit 3f7f1864a6
16 changed files with 218 additions and 154 deletions

View File

@ -0,0 +1,13 @@
package cc.fascinated.service.player.impl;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter @AllArgsConstructor
public class Cape {
/**
* The URL of the cape
*/
private final String url;
}