mirror of
https://github.com/appleboy/drone-ssh.git
synced 2025-05-09 18:23:21 +08:00
14 lines
299 B
Go
14 lines
299 B
Go
package main
|
|
|
|
import (
|
|
"github.com/drone/drone-go/drone"
|
|
)
|
|
|
|
type Params struct {
|
|
Commands []string `json:"commands"`
|
|
Login string `json:"user"`
|
|
Port int `json:"port"`
|
|
Host drone.StringSlice `json:"host"`
|
|
Sleep int `json:"sleep"`
|
|
}
|