mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
14 lines
232 B
Go
14 lines
232 B
Go
package task
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func (e *Executor) println(args ...interface{}) {
|
|
fmt.Fprintln(e.Stdout, args...)
|
|
}
|
|
|
|
func (e *Executor) printfln(format string, args ...interface{}) {
|
|
fmt.Fprintf(e.Stdout, format+"\n", args...)
|
|
}
|