mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
To avoid confusion between error from a call or network. Instance has an Unrecoverable state instead of Error.
10 lines
151 B
Go
10 lines
151 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type BlockingRequest struct {
|
|
Names []string
|
|
SessionDuration time.Duration
|
|
Timeout time.Duration
|
|
}
|