13 lines
172 B
Go
13 lines
172 B
Go
|
package proto
|
||
|
|
||
|
type HandshakeResponse struct {
|
||
|
Nick string
|
||
|
Version string
|
||
|
}
|
||
|
|
||
|
func Handshake() (req Request) {
|
||
|
req.Type = "handshake"
|
||
|
req.Version = Version
|
||
|
return
|
||
|
}
|