mirror of
https://github.com/thegeeklab/git-sv.git
synced 2024-11-13 21:30:40 +00:00
e64d4ddcc1
issue: #40
11 lines
149 B
Go
11 lines
149 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func warnf(format string, values ...interface{}) {
|
|
fmt.Fprintf(os.Stderr, "WARN: "+format+"\n", values...)
|
|
}
|