mirror of
https://github.com/arl/gitmux.git
synced 2026-09-10 07:26:18 -04:00
14 lines
260 B
Go
14 lines
260 B
Go
package main
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/arl/gitstatus"
|
|
)
|
|
|
|
// A formater writes the status of a Git working tree in a given format.
|
|
type formater interface {
|
|
// Format writes the representation of a git status.
|
|
Format(io.Writer, *gitstatus.Status) error
|
|
}
|