| 27 | } |
| 28 | |
| 29 | type FileSystemBase struct { |
| 30 | mu sync.RWMutex |
| 31 | resolvePath func(FSName) string |
| 32 | } |
| 33 | |
| 34 | func (a *FileSystemBase) GetString(name FSName) (string, error) { |
| 35 | a.mu.RLock() |
nothing calls this directly
no outgoing calls
no test coverage detected