package main import ( "log" "os" "path/filepath" "text/template" ) var config RuntimeConfig var templates *template.Template func main() { log.Printf("Started Ceres recipe server.\n") config = GetRuntimeConfig() err := os.Mkdir(filepath.Join(config.Data, "recipes"), 0750) if err != nil && !os.IsExist(err) { log.Fatal(err) } templates = setupTemplates() runServer() }