Move the cogs into a subdir

This commit is contained in:
Marc Di Luzio 2024-08-13 22:42:52 +01:00
parent 93337ebde9
commit d3cdec3965
6 changed files with 4 additions and 4 deletions

View file

@ -6,9 +6,9 @@ import discord
from discord.ext import commands
import config
import state
from matchy_cog import MatchyCog
from owner_cog import OwnerCog
import match_button
from cogs.matchy_cog import MatchyCog
from cogs.owner_cog import OwnerCog
import cogs.match_button as match_button
State = state.load_from_file()