refactor: instance are in unrecoverable state instead of error

To avoid confusion between error from a call or network.
Instance has an Unrecoverable state instead of Error.
This commit is contained in:
Alexis Couvreur
2022-10-26 14:45:43 +00:00
parent 67bf03780c
commit c827154506
19 changed files with 572 additions and 78 deletions

View File

@@ -0,0 +1,12 @@
package models
import (
"time"
)
type DynamicRequest struct {
Names []string
DisplayName string
Theme string
SessionDuration time.Duration
}