Add login

This commit is contained in:
2020-01-05 23:20:38 +01:00
parent dc396a300f
commit c0926ffea0
35 changed files with 1647 additions and 39 deletions

10
main.go
View File

@@ -1,7 +1,7 @@
package main
import (
"fmt"
"hamster-tycoon/cmd"
"math/rand"
"time"
)
@@ -10,11 +10,5 @@ func init() {
rand.Seed(time.Now().UTC().UnixNano())
}
func main() {
fmt.Print("hello")
for {
fmt.Println("Infinite Loop 1")
time.Sleep(time.Second)
}
cmd.Execute()
}