mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 12:40:19 +01:00
2fbd19365c
In order to follow golang's best practices, we should lint the code base properly beyond usual syntax mistakes.
16 lines
178 B
Go
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)
|
|
}
|
|
}
|