This repository has been archived on 2024-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
|
# -*- coding: utf-8 -*-
|
|
|
|
#############################
|
|
# Types for DataBase module #
|
|
#############################
|
|
|
|
# Imports
|
|
from enum import Enum
|
|
|
|
|
|
class CacheDBTypes(Enum):
|
|
"""
|
|
Types of CacheDB
|
|
"""
|
|
...
|
|
|
|
|
|
class UserStates(Enum):
|
|
"""
|
|
Types of User status
|
|
"""
|
|
...
|