acloud: Handle local_image in AVDSpec.
Bug: 112616295
Test: ./run_tests.sh, m acloud && acloud create
acloud create --local_image
acloud create --local_image test_image_path
Change-Id: Ide3c0a4833a1d9e62009a9cd0964c0f108fbbb95
diff --git a/internal/constants.py b/internal/constants.py
index 8b328cc..e8185c5 100755
--- a/internal/constants.py
+++ b/internal/constants.py
@@ -33,6 +33,10 @@
TYPE_CF = "cuttlefish"
TYPE_GF = "goldfish"
+# Image types
+IMAGE_SRC_REMOTE = "remote_image"
+IMAGE_SRC_LOCAL = "local_image"
+
# Instance types
INSTANCE_TYPE_REMOTE = "remote"
INSTANCE_TYPE_LOCAL = "local"