Files
gluetun/internal/command/cmder.go

9 lines
148 B
Go

package command
// Cmder handles running subprograms synchronously and asynchronously.
type Cmder struct{}
func New() *Cmder {
return &Cmder{}
}