summaryrefslogtreecommitdiffstats
path: root/devices/devices.go
blob: dabb9004557104b974acbd4115dc543960a474de (plain)
1
2
3
4
5
6
7
8
9
package devices

var shutdownFuncs []func()

func Shutdown() {
	for _, f := range shutdownFuncs {
		f()
	}
}