| 28 | "github.com/google/uuid" |
| 29 | "github.com/gorilla/websocket" |
| 30 | ) |
| 31 | |
| 32 | type DaemonOptions struct { |
| 33 | Host string |
| 34 | Port int |
| 35 | Config config.Config |
| 36 | EndpointPath string |
| 37 | IdleCheckInterval time.Duration |
| 38 | IdleEmptyChecks int |
| 39 | } |
| 40 | |
| 41 | func teamSessionIDFromPayload(payload any) string { |
| 42 | if snapshot, ok := payload.(luminateam.Snapshot); ok { |
nothing calls this directly
no outgoing calls
no test coverage detected