2021-01-17 21:46:25 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2018-05-13 00:17:12 +08:00
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-05-13 00:17:12 +08:00
|
|
|
|
2021-12-16 23:26:41 +08:00
|
|
|
//go:build windows
|
2018-06-01 18:19:54 +08:00
|
|
|
// +build windows
|
|
|
|
|
2018-05-13 00:17:12 +08:00
|
|
|
package ghttp
|
|
|
|
|
2022-03-19 17:58:21 +08:00
|
|
|
// registerSignalHandler does nothing on a window platform.
|
2021-01-28 10:08:52 +08:00
|
|
|
func handleProcessSignal() {
|
2018-05-13 00:17:12 +08:00
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|