You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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