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.

1234567891011121314151617181920
  1. // Copyright 2023 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. //go:build ignore
  4. package main
  5. import (
  6. "fmt"
  7. "io"
  8. "os"
  9. )
  10. func main() {
  11. _, err := io.Copy(os.Stdout, os.Stdin)
  12. if err != nil {
  13. fmt.Fprintf(os.Stderr, "Error: %v", err)
  14. os.Exit(1)
  15. }
  16. }