mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 02:16:10 -05:00
12 lines
180 B
Go
12 lines
180 B
Go
|
package protocol
|
||
|
|
||
|
import (
|
||
|
"github.com/v2ray/v2ray-core/common/serial"
|
||
|
)
|
||
|
|
||
|
type Timestamp int64
|
||
|
|
||
|
func (this Timestamp) Bytes() []byte {
|
||
|
return serial.Int64Literal(this).Bytes()
|
||
|
}
|