mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 13:28:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			326 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			326 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2017 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
// gobuild: external_renderer
 | 
						|
 | 
						|
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"io"
 | 
						|
	"os"
 | 
						|
)
 | 
						|
 | 
						|
func main() {
 | 
						|
	if len(os.Args) > 1 {
 | 
						|
		fmt.Print(os.Args[1])
 | 
						|
	} else {
 | 
						|
		_, err := io.Copy(os.Stdout, os.Stdin)
 | 
						|
		if err != nil {
 | 
						|
			fmt.Println(err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |