mirror of
https://github.com/docker/cli.git
synced 2026-09-01 10:05:51 -05:00
Upstream-commit: 700a71e6b62a3786d11719ae30cacd0f90930525 Component: engine
12 lines
118 B
Go
12 lines
118 B
Go
package utils
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
)
|
|
|
|
func StopCatch(sigc chan os.Signal) {
|
|
signal.Stop(sigc)
|
|
close(sigc)
|
|
}
|