(folder string, device protocol.DeviceID)
| 949 | } |
| 950 | |
| 951 | func (m *model) LocalFiles(folder string, device protocol.DeviceID) (iter.Seq[protocol.FileInfo], func() error) { |
| 952 | return m.sdb.AllLocalFiles(folder, device) |
| 953 | } |
| 954 | |
| 955 | func (m *model) LocalFilesSequenced(folder string, device protocol.DeviceID, startSeq int64) (iter.Seq[protocol.FileInfo], func() error) { |
| 956 | return m.sdb.AllLocalFilesBySequence(folder, device, startSeq, 0) |
nothing calls this directly
no test coverage detected