Versions in this module Expand all Collapse all v0 v0.2.0 May 16, 2026 Changes in this version + type FSNode struct + Children []*FSNode + Content string + CreatedAt time.Time + MemoryID string + Name string + Type string + type MemoryFS struct + Root *FSNode + func NewMemoryFS() *MemoryFS + func (fs *MemoryFS) Add(path string, item MemoryItem) error + func (fs *MemoryFS) BuildFromMemories(memories []MemoryItem) *MemoryFS + func (fs *MemoryFS) Get(path string) *FSNode + func (fs *MemoryFS) List(path string) []*FSNode + func (fs *MemoryFS) Remove(path string) error + func (fs *MemoryFS) Search(query string) []*FSNode + func (fs *MemoryFS) Tree(path string, depth int) string + type MemoryItem struct + Category string + Content string + CreatedAt time.Time + ID string + Type string