8 lines
97 B
Python
8 lines
97 B
Python
from enum import IntEnum
|
|
|
|
|
|
class VersionType(IntEnum):
|
|
MAJOR = 0
|
|
MINOR = 1
|
|
PATCH = 2
|