Started refactoring for future use
This commit is contained in:
parent
712f64a03a
commit
5c2ff27656
6 changed files with 148 additions and 17 deletions
22
APICommands/HighestMasteryCommand.py
Normal file
22
APICommands/HighestMasteryCommand.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
from abc import ABC
|
||||
|
||||
import discord
|
||||
import riotwatcher
|
||||
|
||||
import APICommands.Command
|
||||
|
||||
|
||||
class HighestMastery(APICommands.Command.Command, ABC):
|
||||
keywords = ["highestmastery", "highestMastery", "HM", "hm", "Hm", "HighestMastery"]
|
||||
|
||||
def __init__(self, pref, api: riotwatcher.LolWatcher, additionalKeywords: list):
|
||||
super().__init__(pref, api, additionalKeywords)
|
||||
|
||||
async def execute(self, message: discord.Message):
|
||||
pass
|
||||
|
||||
async def info(self, message: discord.Message):
|
||||
pass
|
||||
|
||||
async def usage(self, message: discord.Message):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue