18 lines
294 B
Python
18 lines
294 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
#####################################
|
||
|
# Types for Directory-Getter module #
|
||
|
#####################################
|
||
|
|
||
|
# Imports
|
||
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class GetterTypes(Enum):
|
||
|
"""
|
||
|
Types of getters
|
||
|
"""
|
||
|
|
||
|
OS = "Python os module"
|
||
|
Jellyfin = "Jelyfin API"
|