8 lines
181 B
Java
8 lines
181 B
Java
import java.time.Instant;
|
|
|
|
record Message(String type, String value, Instant timestamp) {
|
|
Message(String type, String value) {
|
|
this(type, value, Instant.now());
|
|
}
|
|
}
|