1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| # -*- coding: utf-8 -*-
| """
| @File : TreeTypeEnum.py.py
| @Time : 2023/12/6 11:01
| @Author : geekbing
| @LastEditTime : -
| @LastEditors : -
| @Description : 分组目录类型枚举
| """
| from enum import IntEnum
|
|
| class TreeType(IntEnum):
| API = 1
| CASE = 2
|
|