cli

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Dec 11, 2025 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CommandConfig

type CommandConfig struct {
	LambdaPath string
	LambdaArgs []string
}

type RunMode

type RunMode int
const (
	// ModeBinary runs a compiled Lambda binary
	ModeBinary RunMode = iota
	// ModeGoRun uses 'go run' to execute the Lambda function
	ModeGoRun
)

type Runner

type Runner struct {
	Mode       RunMode
	Debug      bool
	ServerPort string
}

func NewRunner

func NewRunner(mode RunMode, debug bool, serverPort string) *Runner

func (*Runner) CreateCommand

func (r *Runner) CreateCommand(config *CommandConfig) (*exec.Cmd, error)

func (*Runner) Debugf

func (r *Runner) Debugf(format string, args ...any)

func (*Runner) KillProcessGroup

func (r *Runner) KillProcessGroup(cmd *exec.Cmd, signal syscall.Signal) error

func (*Runner) ParseArgs

func (r *Runner) ParseArgs(args []string) (*CommandConfig, error)

ParseArgs parses remaining arguments after flag parsing based on the run mode args should be the result of flag.Args() after flag.Parse()

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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