OK.go 183 B

1234567891011121314151617
  1. package QuectelAT
  2. const (
  3. OK = "OK"
  4. )
  5. type SentenceOK struct {
  6. Type string
  7. }
  8. func (s SentenceOK) DataType() string {
  9. return OK
  10. }
  11. func NewOK() Sentence {
  12. return SentenceOK{}
  13. }