NULL.go 197 B

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