13 lines
489 B
Go
13 lines
489 B
Go
|
|
package org.nieo.seerproject.common.net.info.misc;
|
||
|
|
|
||
|
|
import org.nieo.seerproject.common.annotations.InboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.net.InboundMessage;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
|
||
|
|
import javax.annotation.Nonnull;
|
||
|
|
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.System_Time)
|
||
|
|
public class SystemTimeInboundInfo implements InboundMessage {
|
||
|
|
public static final @Nonnull SystemTimeInboundInfo INSTANCE = new SystemTimeInboundInfo();
|
||
|
|
}
|