File: utils.py

package info (click to toggle)
aiocache 0.12.3-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 692 kB
  • sloc: python: 5,044; makefile: 221; sh: 7
file content (9 lines) | stat: -rw-r--r-- 126 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from enum import Enum


class Keys(str, Enum):
    KEY: str = "key"
    KEY_1: str = "random"


KEY_LOCK = Keys.KEY + "-lock"