mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-23 19:11:38 +01:00
10a9b72cdb
Signed-off-by: Andreas Ulm <andreas.ulm@root360.de>
15 lines
314 B
Go
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()
|
|
}
|