model parser
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-12-08 17:13:56 +01:00
parent 4950b67afd
commit ea9db110a5
4 changed files with 71 additions and 8 deletions

View File

@ -0,0 +1,11 @@
package emuProfIILoRa
import (
"fmt"
"udi/database"
)
func Parse(decodedPayload interface{}) ([]database.VariableType, error) {
return nil, fmt.Errorf("Nothing works so far")
}