Rename MainFeed and MainTimeline folders to Sidebar and Timeline.

This commit is contained in:
Brent Simmons
2025-02-02 11:34:11 -08:00
parent b294fbcc58
commit 2c6c8a7240
26 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//
// MainFeedRowIdentifier.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 10/20/21.
// Copyright © 2021 Ranchero Software. All rights reserved.
//
import Foundation
final class MainFeedRowIdentifier: NSObject, NSCopying {
var indexPath: IndexPath
init(indexPath: IndexPath) {
self.indexPath = indexPath
}
func copy(with zone: NSZone? = nil) -> Any {
return self
}
}