mirror of
https://github.com/zhaojh329/rttys.git
synced 2026-02-27 09:53:21 +08:00
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")
|
|
}
|