storage.go 152 B

123456789101112131415
  1. package helpers
  2. import (
  3. "os"
  4. "adeptus-mechanicus.void/git/keiji/pkg/env"
  5. )
  6. func GetImageStore() string {
  7. return os.Getenv(env.IMAGE_STORE)
  8. }