8 lines
245 B
Go
8 lines
245 B
Go
|
|
//go:build !windows
|
||
|
|
|
||
|
|
package hotime
|
||
|
|
|
||
|
|
// registerWindowsCloseHandler 在非 Windows 平台上是空实现。
|
||
|
|
// Linux/macOS 通过 SIGTERM (kill) 或 SIGINT (Ctrl+C) 触发优雅停机。
|
||
|
|
func (that *Application) registerWindowsCloseHandler() {}
|