9 lines
148 B
Go
9 lines
148 B
Go
package command
|
|
|
|
// Cmder handles running subprograms synchronously and asynchronously.
|
|
type Cmder struct{}
|
|
|
|
func New() *Cmder {
|
|
return &Cmder{}
|
|
}
|