mirror of
https://github.com/yudai/gotty.git
synced 2025-12-20 01:20:12 +01:00
21 lines
332 B
Go
21 lines
332 B
Go
|
|
package localcommand
|
||
|
|
|
||
|
|
import (
|
||
|
|
"syscall"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Option func(*LocalCommand)
|
||
|
|
|
||
|
|
func WithCloseSignal(signal syscall.Signal) Option {
|
||
|
|
return func(lcmd *LocalCommand) {
|
||
|
|
lcmd.closeSignal = signal
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func WithCloseTimeout(timeout time.Duration) Option {
|
||
|
|
return func(lcmd *LocalCommand) {
|
||
|
|
lcmd.closeTimeout = timeout
|
||
|
|
}
|
||
|
|
}
|