9 lines
200 B
Swift
9 lines
200 B
Swift
/// Represents different sections of the website.
|
|
///
|
|
/// This is used to render base layouts appropriately for the given section.
|
|
enum Section: String {
|
|
case home
|
|
case articles
|
|
case notFound
|
|
}
|