mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-29 18:33:01 +01:00
10 lines
136 B
Python
10 lines
136 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class SearchType(str, Enum):
|
||
|
Notes = "notes"
|
||
|
Ledger = "ledger"
|
||
|
Music = "music"
|
||
|
Image = "image"
|
||
|
|