Command Line Interface to Run Games Locally (#25)

* Initial Attempts at Cobra Command
* Update to the README
* Fixes for Linter

Thanks @LenPayne for all your hard work getting this started!
This commit is contained in:
Len Payne 2020-12-10 17:35:52 -05:00 committed by GitHub
parent e01a1bf505
commit 6c1e0d9547
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 1035 additions and 7 deletions

7
cli/main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "github.com/BattlesnakeOfficial/rules/cli/cmd"
func main() {
cmd.Execute()
}