mirror of
https://github.com/go-task/task.git
synced 2025-07-15 01:35:00 +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...)
|
||
|
}
|