shell

package
v0.23.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 5, 2025 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Execute

func Execute(data map[string]any, opts ...Option) (map[string]any, error)

func PrepareRequestData

func PrepareRequestData(data map[string]string) error

PrepareRequestData prepares shell request data by extracting environment variables

Types

type Callback

type Callback struct {
	// contains filtered or unexported fields
}

type Option

type Option func(*Callback)

func WithAfter

func WithAfter(f func(result *Result)) Option

func WithBefore

func WithBefore(f func(cmd string, shell string, workdir string)) Option

type Req

type Req struct {
	Cmd        string            `map:"cmd" validate:"required"`
	Shell      string            `map:"shell"`
	Workdir    string            `map:"workdir"`
	Timeout    string            `map:"timeout"`
	Env        map[string]string `map:"env"`
	Background bool              `map:"background"`
	// contains filtered or unexported fields
}

func NewReq

func NewReq() *Req

func (*Req) Do

func (r *Req) Do() (*Result, error)

type Res

type Res struct {
	Code   int    `map:"code"`
	Stdout string `map:"stdout"`
	Stderr string `map:"stderr"`
	PID    int    `map:"pid"`
	Log    string `map:"log"`
}

type Result

type Result struct {
	Req    Req           `map:"req"`
	Res    Res           `map:"res"`
	RT     time.Duration `map:"rt"`
	Status int           `map:"status"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL