MCPcopy Create free account
hub / github.com/astercloud/aster / sqliteSession

Struct sqliteSession

pkg/session/sqlite/store.go:462–470  ·  view source on GitHub ↗

sqliteSession implements session.Session

Source from the content-addressed store, hash-verified

460
461// sqliteSession implements session.Session
462type 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
472func (s *sqliteSession) ID() string { return s.id }
473func (s *sqliteSession) AppName() string { return s.appName }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected