mirror of
https://github.com/zhaojh329/rttys.git
synced 2026-02-27 09:53:21 +08:00
18 lines
267 B
Go
18 lines
267 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Author: Jianhui Zhao <zhaojh329@gmail.com>
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func signalHandle() {
|
|
log.Debug().Msg("Signal handling not supported on Windows")
|
|
}
|