Load config from ENV

This commit is contained in:
2021-11-07 21:56:35 +01:00
parent 5518d57bbd
commit 2eb1457019
2 changed files with 10 additions and 13 deletions

View File

@ -10,9 +10,9 @@ import (
)
func main() {
cfg, err := config.LoadConfig("config.json")
cfg, err := config.LoadConfig()
if err != nil {
panic("Could not load Config from config.json")
panic("Could not load Config")
}
bv := &bcrypt.Verifier{}