feat: add android to OS type literal

This commit is contained in:
synacktra.work@gmail.com
2025-12-21 03:16:04 +05:30
parent 0ebe605d52
commit 20fe640127
+1 -1
View File
@@ -51,7 +51,7 @@ SYSTEM_INFO = {
from .providers.base import VMProviderType
from .providers.factory import VMProviderFactory
OSType = Literal["macos", "linux", "windows"]
OSType = Literal["macos", "linux", "windows", "android"]
class Computer: