add cat and dog command
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 36s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 36s
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
package cc.fascinated.bat.model.token.dogceo;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@Getter @AllArgsConstructor
|
||||
public class RandomImage {
|
||||
/**
|
||||
* The URL of the image.
|
||||
*/
|
||||
private String message;
|
||||
|
||||
/**
|
||||
* The status of the request.
|
||||
*/
|
||||
private String status;
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package cc.fascinated.bat.model.token.thecatapi;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@Getter @AllArgsConstructor
|
||||
public class CatImageToken {
|
||||
/**
|
||||
* The ID of the image.
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* The URL of the image.
|
||||
*/
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* The width of the image.
|
||||
*/
|
||||
private int width;
|
||||
|
||||
/**
|
||||
* The height of the image.
|
||||
*/
|
||||
private int height;
|
||||
}
|
Reference in New Issue
Block a user