mirror of
https://github.com/netfun2000/rttys_zhaojh329.git
synced 2026-02-27 09:53:24 +08:00
2179298bf7
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
13 lines
178 B
Go
13 lines
178 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func signalHandle() {
|
|
log.Debug().Msg("Signal handling not supported on Windows")
|
|
}
|