mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-24 15:52:38 +02:00
15 lines
208 B
Go
15 lines
208 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func Printf(format string, a ...interface{}) {
|
|
_, _ = fmt.Fprintf(os.Stderr, format, a...)
|
|
}
|
|
|
|
func Println(a ...interface{}) {
|
|
_, _ = fmt.Fprintln(os.Stderr, a...)
|
|
}
|