12 lines
269 B
Python
12 lines
269 B
Python
import discord
|
|
from libs.LanguageButton import LanguageButton
|
|
|
|
|
|
class PHPLanguageButton(LanguageButton):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.style = discord.ButtonStyle.blurple
|
|
self.label = "PHP"
|
|
self.disabled: bool = False
|