package QuectelAT const ( OK = "OK" ) type SentenceOK struct { Type string } func (s SentenceOK) DataType() string { return OK } func NewOK() Sentence { return SentenceOK{} }