mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
You can't have feeds without posts that they link to. Doesn't make sense to have feeds without posts.
13 lines
188 B
Swift
13 lines
188 B
Swift
//
|
|
// SitePlugin.swift
|
|
// SiteGenerator
|
|
//
|
|
// Created by Sami Samhuri on 2019-12-10.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum SitePlugin: String, Codable {
|
|
case posts
|
|
case projects
|
|
}
|