mirror of
https://gitea.com/gitea/act_runner
synced 2026-05-06 01:37:57 +02: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
|
|
}
|