Versions in this module Expand all Collapse all v0 v0.1.0 May 13, 2026 Changes in this version + type Memory struct + func NewMemory() *Memory + func (m *Memory) Files() map[string][]byte + func (m *Memory) Get(path string) ([]byte, bool) + func (m *Memory) ReadFile(path string) ([]byte, error) + func (m *Memory) Remove(path string) error + func (m *Memory) WriteFile(path string, data []byte) error + type Writer interface + ReadFile func(path string) ([]byte, error) + Remove func(path string) error + WriteFile func(path string, data []byte) error + func OS(root string) Writer