tea/main.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()
}