summaryrefslogtreecommitdiff
path: root/src/edit/views.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-11-01 14:46:15 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-11-01 14:46:15 -0400
commitc7eea383aeaf6748daf994e9e28e4d0c25350736 (patch)
treea0979cbd4e6be06385fd0340e050147fdacd6e35 /src/edit/views.go
initial commit
Diffstat (limited to 'src/edit/views.go')
-rw-r--r--src/edit/views.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/edit/views.go b/src/edit/views.go
new file mode 100644
index 0000000..90b6f1b
--- /dev/null
+++ b/src/edit/views.go
@@ -0,0 +1,25 @@
+package main
+
+import (
+ "io"
+)
+
+func renderViewTree(w io.Writer, upath string, tree GitTree) error {
+ // TODO
+ return nil
+}
+
+func renderViewBlob(w io.Writer, upath string, file GitFile) error {
+ // TODO
+ return nil
+}
+
+func renderModified(w io.Writer, upath string) error {
+ // TODO
+ return nil
+}
+
+func renderDeleted(w io.Writer, upath string) error {
+ // TODO
+ return nil
+}