Rename folder
This commit is contained in:
@@ -19,7 +19,7 @@ from function import (
|
|||||||
get_aliases,
|
get_aliases,
|
||||||
cooldown_check
|
cooldown_check
|
||||||
)
|
)
|
||||||
from view import DebugModal, HelpView
|
from views import DebugModal, HelpView
|
||||||
|
|
||||||
|
|
||||||
class Admin(commands.Cog, name="settings"):
|
class Admin(commands.Cog, name="settings"):
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ from function import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
from addons import getLyrics
|
from addons import getLyrics
|
||||||
from view import SearchView, ListView, LinkView, LyricsView, ChapterView, HelpView
|
from views import SearchView, ListView, LinkView, LyricsView, ChapterView, HelpView
|
||||||
from validators import url
|
from validators import url
|
||||||
from random import shuffle
|
from random import shuffle
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ from function import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from view import PlaylistView, InboxView, HelpView
|
from views import PlaylistView, InboxView, HelpView
|
||||||
|
|
||||||
|
|
||||||
def assign_playlistId(existed: list) -> str:
|
def assign_playlistId(existed: list) -> str:
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ async def requests_api(url: str):
|
|||||||
async def create_account(ctx: commands.Context):
|
async def create_account(ctx: commands.Context):
|
||||||
if not ctx.author:
|
if not ctx.author:
|
||||||
return
|
return
|
||||||
from view import CreateView
|
from views import CreateView
|
||||||
view = CreateView()
|
view = CreateView()
|
||||||
embed=discord.Embed(title="Do you want to create an account on Vocard?", color=embed_color)
|
embed=discord.Embed(title="Do you want to create an account on Vocard?", color=embed_color)
|
||||||
embed.description = f"> Plan: `Default` | `5` Playlist | `500` tracks in each playlist."
|
embed.description = f"> Plan: `Default` | `5` Playlist | `500` tracks in each playlist."
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ import function as func
|
|||||||
|
|
||||||
from math import ceil
|
from math import ceil
|
||||||
from asyncio import sleep
|
from asyncio import sleep
|
||||||
from view import InteractiveController
|
from views import InteractiveController
|
||||||
from typing import (
|
from typing import (
|
||||||
Any,
|
Any,
|
||||||
Dict,
|
Dict,
|
||||||
|
|||||||
Reference in New Issue
Block a user