package wire

import (
	
)

// A PingFrame is a PING frame
type PingFrame struct{}

func ( *PingFrame) ( []byte,  protocol.Version) ([]byte, error) {
	return append(, byte(FrameTypePing)), nil
}

// Length of a written frame
func ( *PingFrame) ( protocol.Version) protocol.ByteCount {
	return 1
}