mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
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{}
|
|
}
|