mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-24 14:31:51 +01:00
To avoid confusion between error from a call or network. Instance has an Unrecoverable state instead of Error.
13 lines
172 B
Go
13 lines
172 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type DynamicRequest struct {
|
|
Names []string
|
|
DisplayName string
|
|
Theme string
|
|
SessionDuration time.Duration
|
|
}
|