chore(v1): deprecated

This commit is contained in:
2025-06-11 12:20:19 +02:00
parent 5a8f4301cb
commit 2c5d1442fe
6 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package model
// Deprecated : is no longer maintained for modules in V1
var (
// On -
On = String("on")

View File

@ -0,0 +1,8 @@
package model
// Deprecated : is no longer maintained for modules in V1
type TaskMessage struct {
Name string `json:"name"`
State string `json:"state"`
Payload map[string]interface{} `json:"payload"`
}