2018-09-03 14:43:00 +08:00
|
|
|
// 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() {
|
2019-04-29 04:36:59 +08:00
|
|
|
cmd.Execute()
|
2018-09-03 14:43:00 +08:00
|
|
|
}
|