Files
saga-table-test/Sources/Site/Section.swift
Michael Housh 0c6b84a872
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 2m50s
feat: Initial commit.
2025-12-12 13:13:14 -05:00

10 lines
259 B
Swift

/// Represents different sections of the website.
///
/// This is used to render base layouts appropriately for the given section.
enum Section: String {
/// The home page of the site.
case home
/// The articles / blog posts of the site.
case table
}