package services import ( "log" "github.com/dustinpianalto/quartermaster" "github.com/dustinpianalto/quartermaster/internal/postgres" ) var ( ItemService quartermaster.ItemService NutritionService quartermaster.NutritionService LocationService quartermaster.LocationService VitaminService quartermaster.VitaminService GroupService quartermaster.GroupService CategoryService quartermaster.CategoryService ) func InitServices() { ItemService = postgres.ItemService NutritionService = postgres.NutritionService LocationService = postgres.LocationService VitaminService = postgres.VitaminService GroupService = postgres.GroupService CategoryService = postgres.CategoryService log.Println("Services Initialized") }