mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
11 lines
278 B
Ruby
11 lines
278 B
Ruby
module Pressa
|
|
class Plugin
|
|
def setup(site:, source_path:)
|
|
raise NotImplementedError, "#{self.class}#setup must be implemented"
|
|
end
|
|
|
|
def render(site:, target_path:)
|
|
raise NotImplementedError, "#{self.class}#render must be implemented"
|
|
end
|
|
end
|
|
end
|