MCPcopy Create free account
hub / github.com/bricks-cloud/BricksLLM / Store

Struct Store

internal/storage/postgresql/postgresql.go:12–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10)
11
12type Store struct {
13 db *sql.DB
14 wt time.Duration
15 rt time.Duration
16}
17
18func NewStore(connStr string, wt time.Duration, rt time.Duration) (*Store, error) {
19 db, err := sql.Open("postgres", connStr)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected