12 lines
192 B
Go
12 lines
192 B
Go
![]() |
package types
|
||
|
|
||
|
type TelegramID int16
|
||
|
|
||
|
type TelegramHeader struct {
|
||
|
MessageLength int16
|
||
|
TelegramID TelegramID
|
||
|
SequenceCounter int16
|
||
|
Flags int16
|
||
|
TimeStamp [8]int16
|
||
|
}
|