您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

graceful_windows.go 439B

12345678910111213141516
  1. // +build windows
  2. // Copyright 2019 The Gitea Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. // This code is heavily inspired by the archived gofacebook/gracenet/net.go handler
  6. package graceful
  7. // This file contains shims for windows builds
  8. const IsChild = false
  9. // WaitForServers waits for all running servers to finish
  10. func WaitForServers() {
  11. }