summaryrefslogtreecommitdiffstats
path: root/hugolib/planner.go
diff options
context:
space:
mode:
authorNoah Campbell <noahcampbell@gmail.com>2013-08-31 21:13:04 -0700
committerNoah Campbell <noahcampbell@gmail.com>2013-09-03 20:00:21 -0700
commit13d2c552060a2e0339e1ac7c6a523f8837d77e09 (patch)
tree408f825248923bece96ad8bebb024cb1bd58aa52 /hugolib/planner.go
parent79d9f82e79014fffabaedd34a3997475967508f6 (diff)
Adding Planner
Diffstat (limited to 'hugolib/planner.go')
-rw-r--r--hugolib/planner.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/hugolib/planner.go b/hugolib/planner.go
new file mode 100644
index 000000000..5b1d42327
--- /dev/null
+++ b/hugolib/planner.go
@@ -0,0 +1,9 @@
+package hugolib
+
+import (
+ "io"
+)
+
+func (s *Site) ShowPlan(out io.Writer) (err error) {
+ return
+}