mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-22 16:00:51 +00:00
12 lines
300 B
Go
12 lines
300 B
Go
package dto
|
|
|
|
type TerminalSessionClose struct {
|
|
ID string `json:"id" validate:"required"`
|
|
}
|
|
|
|
type TerminalSessionRevoke struct {
|
|
Scope string `json:"scope" validate:"required,oneof=auth_session user all"`
|
|
UserID string `json:"userId"`
|
|
AuthSessionID string `json:"authSessionId"`
|
|
}
|