All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m55s
16 lines
290 B
Java
16 lines
290 B
Java
package xyz.mcutils.backend.model.metric;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Getter;
|
|
|
|
import java.util.Map;
|
|
|
|
@AllArgsConstructor
|
|
@Getter
|
|
public class WebsocketMetrics {
|
|
/**
|
|
* The metrics to send to the client.
|
|
*/
|
|
private final Map<String, Object> metrics;
|
|
}
|