package QuectelAT const ( NULL = "NULL" ) type SentenceNULL struct { Type string } func (s SentenceNULL) DataType() string { return NULL } func NewNULL() Sentence { return SentenceNULL{} }