On renome le module upnp pmoupnp pour homogénéiser le tout

This commit is contained in:
2025-09-09 19:42:32 +02:00
parent 85e053aad0
commit b8370a552a
87 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
package statevariables
var TransferStatus = func() *StateVariable {
ts := StateType_String.NewStateValue("TransferStatus")
ts.SetAllowedValues(
"COMPLETED",
"ERROR",
"IN_PROGRESS",
"NONE",
)
ts.SetSendingEvents()
return ts
}()