5 lines
69 B
Python
5 lines
69 B
Python
from enum import Enum
|
|
|
|
class Encoding(str, Enum):
|
|
utf8 = "utf-8"
|