Passing timezone to server side for rendering of time stamps Configuration of preferred shells.
14 lines
159 B
Go
14 lines
159 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Client struct {
|
|
PublicId string
|
|
AgentId string
|
|
ClientId int
|
|
StartTime time.Time
|
|
SessionType string
|
|
}
|