mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-05 15:30:48 +00:00
8 lines
113 B
Python
8 lines
113 B
Python
from enum import IntEnum
|
|
|
|
|
|
class Channel(IntEnum):
|
|
free = 1
|
|
paid = 2
|
|
gift = 3
|
|
top_up = 4
|