mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			601 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			601 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| // Tea is command line tool for Gitea.
 | |
| package main // import "code.gitea.io/tea"
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"fmt"
 | |
| 	"os"
 | |
| 
 | |
| 	"code.gitea.io/tea/cmd"
 | |
| 	"code.gitea.io/tea/modules/debug"
 | |
| )
 | |
| 
 | |
| func main() {
 | |
| 	app := cmd.App()
 | |
| 	app.Flags = append(app.Flags, debug.CliFlag())
 | |
| 	err := app.Run(context.Background(), os.Args)
 | |
| 	if err != nil {
 | |
| 		// app.Run already exits for errors implementing ErrorCoder,
 | |
| 		// so we only handle generic errors with code 1 here.
 | |
| 		fmt.Fprintf(app.ErrWriter, "Error: %v\n", err)
 | |
| 		os.Exit(1)
 | |
| 	}
 | |
| }
 | 
