lyric_search_new renamed to lyric_search

This commit is contained in:
2025-01-24 09:10:54 -05:00
parent b0a9af0560
commit c3bbd27cd5
13 changed files with 14 additions and 14 deletions

View File

@ -12,8 +12,8 @@ import aiohttp
import aiosqlite as sqlite3
from fastapi import FastAPI, HTTPException
from pydantic import BaseModel
from lyric_search_new.sources import aggregate
from lyric_search_new import notifier
from lyric_search.sources import aggregate
from lyric_search import notifier
class ValidLyricRequest(BaseModel):

View File

@ -11,7 +11,7 @@ from redis.commands.search.query import Query
from redis.commands.search.indexDefinition import IndexDefinition, IndexType
from redis.commands.search.field import TextField, TagField
from redis.commands.json.path import Path
from lyric_search_new.sources import private, cache as LyricsCache, redis_cache
from lyric_search.sources import private, cache as LyricsCache, redis_cache
class Misc(FastAPI):
"""Misc Endpoints"""