tea/main.go

15 lines
314 B
Go
Raw Normal View History

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