MCPcopy Create free account
hub / github.com/0xUnixIO/pulse / memSessionStore

Struct memSessionStore

internal/auth/auth_test.go:15–18  ·  view source on GitHub ↗

memSessionStore 内存实现,仅用于测试。

Source from the content-addressed store, hash-verified

13
14// memSessionStore 内存实现,仅用于测试。
15type memSessionStore struct {
16 mu sync.RWMutex
17 data map[string]string
18}
19
20func newMemStore() *memSessionStore {
21 return &memSessionStore{data: make(map[string]string)}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected