John Olheiser
57e620da5b
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #62 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: John Olheiser <john+gitea@jolheiser.com> Co-committed-by: John Olheiser <john+gitea@jolheiser.com>
20 lines
379 B
Go
20 lines
379 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.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"code.gitea.io/changelog/cmd"
|
|
)
|
|
|
|
func main() {
|
|
app := cmd.New()
|
|
if err := app.Run(os.Args); err != nil {
|
|
fmt.Printf("Failed to run app with %s: %v\n", os.Args[1:], err)
|
|
}
|
|
}
|