add duck image command
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 35s

This commit is contained in:
Lee
2024-06-29 13:23:12 +01:00
parent d824f957fe
commit 4cb34fbb9a
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package cc.fascinated.bat.model.token.randomd;
import lombok.Getter;
import lombok.Setter;
/**
* @author Fascinated (fascinated7)
*/
@Getter
public class RandomDuck {
/**
* The URL of the duck image.
*/
private String url;
}