0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-11-08 07:32:23 +01:00
gitea/tools/test-echo.go
2025-10-23 21:51:26 +07:00

21 lines
287 B
Go

// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
//go:build ignore
package main
import (
"fmt"
"io"
"os"
)
func main() {
_, err := io.Copy(os.Stdout, os.Stdin)
if err != nil {
fmt.Fprintf(os.Stderr, "Error: %v", err)
os.Exit(1)
}
}