mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-20 11:56:47 +08:00
13 lines
167 B
Go
13 lines
167 B
Go
package tart
|
|
|
|
import "io"
|
|
|
|
type Config struct {
|
|
SSHUsername string
|
|
SSHPassword string
|
|
Softnet bool
|
|
Headless bool
|
|
AlwaysPull bool
|
|
Writer io.Writer
|
|
}
|