mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
You are now able to use labels on containers and services such as `--sablier.enable=true` and `--sablier.group=mygroup` to select groups.
11 lines
260 B
Go
11 lines
260 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type BlockingRequest struct {
|
|
Names []string `form:"names"`
|
|
Group string `form:"group"`
|
|
SessionDuration time.Duration `form:"session_duration"`
|
|
Timeout time.Duration `form:"timeout"`
|
|
}
|