added base code

This commit is contained in:
2020-12-24 15:29:06 +04:00
parent c440559832
commit 47f044381c
7 changed files with 755 additions and 0 deletions

26
main.go Executable file
View File

@@ -0,0 +1,26 @@
package main
import (
"log"
"os"
"github.com/urfave/cli/v2"
)
// VERSION specifies the version of the platform
var VERSION = "0.0.1"
func main() {
app := &cli.App{
Name: "p2p-redering-computation",
Usage: "allows you to batch tasks in a peer to peer network",
Version: VERSION,
/*Commands: []*cli.Command{
cmd.CmdStart,
},*/
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}