OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / cmd / bytomcli / main.go
diff --git a/cmd/bytomcli/main.go b/cmd/bytomcli/main.go
new file mode 100644 (file)
index 0000000..ca0655a
--- /dev/null
@@ -0,0 +1,12 @@
+package main
+
+import (
+       "runtime"
+
+       cmd "github.com/vapor/cmd/bytomcli/commands"
+)
+
+func main() {
+       runtime.GOMAXPROCS(runtime.NumCPU())
+       cmd.Execute()
+}