mirror of
				https://gitea.com/gitea/gitea-mcp.git
				synced 2025-11-04 04:11:50 +00:00 
			
		
		
		
	Fix: #35 Reviewed-on: https://gitea.com/gitea/gitea-mcp/pulls/36 Co-authored-by: hiifong <f@ilo.nz> Co-committed-by: hiifong <f@ilo.nz>
		
			
				
	
	
		
			19 lines
		
	
	
		
			195 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			195 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"gitea.com/gitea/gitea-mcp/cmd"
 | 
						|
	"gitea.com/gitea/gitea-mcp/pkg/flag"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	Version = "dev"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	flag.Version = Version
 | 
						|
}
 | 
						|
 | 
						|
func main() {
 | 
						|
	cmd.Execute()
 | 
						|
}
 |