mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-04 21:52:24 +00:00
9c6c4559a7
Add SSH backend that runs commands via SSH. Close #848
9 lines
119 B
Go
9 lines
119 B
Go
// +build debug
|
|
|
|
package sftp
|
|
|
|
import "log"
|
|
|
|
func debug(fmt string, args ...interface{}) {
|
|
log.Printf(fmt, args...)
|
|
}
|