fileStore implements file-based storage for persistent knowledge base.
| 67 | |
| 68 | // fileStore implements file-based storage for persistent knowledge base. |
| 69 | type fileStore struct { |
| 70 | path string |
| 71 | } |
| 72 | |
| 73 | // Read loads data from file, returning empty slice if file doesn't exist. |
| 74 | func (fs *fileStore) Read() ([]byte, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected