1
0
mirror of https://github.com/go-task/task.git synced 2025-11-23 22:24:45 +02:00

Move main package to cmd/task

This commit is contained in:
Andrey Nering
2017-02-27 09:48:50 -03:00
parent 6104b42368
commit a441fea849
3 changed files with 12 additions and 3 deletions

9
cmd/task/task.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"github.com/go-task/task"
)
func main() {
task.Run()
}