Can display but have not yet fetched one

This commit is contained in:
Bel LaPointe
2020-07-13 04:24:48 -06:00
parent 1b051ee1d5
commit 43746485d4
5 changed files with 207 additions and 0 deletions

View File

@@ -2,10 +2,16 @@ package main
import (
"local/whodunit/config"
"local/whodunit/storage"
"local/whodunit/view"
"log"
)
func main() {
c := config.New()
log.Println(c)
g := storage.NewGraph()
if err := view.Html(g); err != nil {
panic(err)
}
}