Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }