type.go 101 B

12345678910
  1. package pty
  2. type MsgType int
  3. const (
  4. MsgTypeInit MsgType = iota
  5. TypeData
  6. TypeResize
  7. TypePing
  8. )