Impl storage mongo driver and config

This commit is contained in:
Bel LaPointe
2020-07-12 21:28:52 -06:00
parent 2c13814177
commit 1b051ee1d5
9 changed files with 461 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"local/whodunit/config"
"log"
)
func main() {
c := config.New()
log.Println(c)
}