transfer.sh/main.go
Stefan Benten 2fbd19365c
.github/workflows: adding golangci-lint as new job (#453)
In order to follow golang's best practices, we should lint the code base properly beyond usual syntax mistakes.
2021-12-26 14:03:27 +01:00

16 lines
178 B
Go

package main
import (
"log"
"os"
"github.com/dutchcoders/transfer.sh/cmd"
)
func main() {
app := cmd.New()
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}