mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
14 lines
272 B
Swift
14 lines
272 B
Swift
//
|
|
// Plugin.swift
|
|
// SiteGenerator
|
|
//
|
|
// Created by Sami Samhuri on 2019-12-02.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Plugin {
|
|
func setUp(site: Site, sourceURL: URL) throws
|
|
|
|
func render(site: Site, targetURL: URL, templateRenderer: TemplateRenderer) throws
|
|
}
|