summaryrefslogtreecommitdiff
path: root/src/edit/views.go
blob: 90b6f1bd7bf965b23b5b7917e56c44950e2646d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}