gitea-tea/main.go
Andreas Ulm 10a9b72cdb initial cobra implementation
Signed-off-by: Andreas Ulm <andreas.ulm@root360.de>
2019-04-28 22:36:59 +02:00

15 lines
314 B
Go

// Copyright 2018 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Tea is command line tool for Gitea.
package main // import "code.gitea.io/tea"
import (
"code.gitea.io/tea/cmd"
)
func main() {
cmd.Execute()
}