use paste for messages longer than 512 and fix message sniping
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m10s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m10s
This commit is contained in:
@ -0,0 +1,22 @@
|
||||
package cc.fascinated.bat.model.token.paste;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@AllArgsConstructor
|
||||
@Getter @Setter
|
||||
public class PasteUploadToken {
|
||||
/**
|
||||
* The key of the paste
|
||||
*/
|
||||
private final String key;
|
||||
|
||||
/**
|
||||
* The url of the paste
|
||||
*/
|
||||
private String url;
|
||||
}
|
Reference in New Issue
Block a user