12 lines
180 B
Go
Raw Normal View History

2016-02-23 22:51:08 +01:00
package protocol
import (
"github.com/v2ray/v2ray-core/common/serial"
)
type Timestamp int64
func (this Timestamp) Bytes() []byte {
return serial.Int64Literal(this).Bytes()
}