Added web interface and team list report.

This commit is contained in:
Patrick Fairbank
2014-05-25 22:41:28 -07:00
parent 1591e96f08
commit 764b71eb88
6 changed files with 163 additions and 2 deletions

View File

@@ -4,15 +4,17 @@
package main
import (
"fmt"
"log"
"math/rand"
"time"
)
var db *Database
func main() {
rand.Seed(time.Now().UnixNano())
fmt.Println("Cheesy Arena")
db, _ = OpenDatabase("test.db")
ServeWebInterface()
}
func checkErr(err error) {