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

8
go.mod
View file

@ -2,4 +2,10 @@ module github.com/BattlesnakeOfficial/rules
go 1.13
require github.com/stretchr/testify v1.4.0
require (
github.com/google/uuid v1.1.2
github.com/mitchellh/go-homedir v1.1.0
github.com/spf13/cobra v1.1.1
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.4.0
)