sqliteSession implements session.Session
| 460 | |
| 461 | // sqliteSession implements session.Session |
| 462 | type sqliteSession struct { |
| 463 | service *Service |
| 464 | id string |
| 465 | appName string |
| 466 | userID string |
| 467 | agentID string |
| 468 | metadata map[string]any |
| 469 | lastUpdateTime time.Time |
| 470 | } |
| 471 | |
| 472 | func (s *sqliteSession) ID() string { return s.id } |
| 473 | func (s *sqliteSession) AppName() string { return s.appName } |
nothing calls this directly
no outgoing calls
no test coverage detected