mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-03 05:53:15 +08:00
22 lines
387 B
Python
22 lines
387 B
Python
# Released under the MIT License. See LICENSE for details.
|
|
#
|
|
"""Functionality related to cloud based assets."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from enum import Enum
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
pass
|
|
|
|
|
|
class LoginType(Enum):
|
|
"""Types of logins available."""
|
|
|
|
# Email/password
|
|
EMAIL = 'email'
|
|
|
|
# Google Play Game Services
|
|
GPGS = 'gpgs'
|