generated from HoloTech/discord-bot-template
14 lines
201 B
Python
14 lines
201 B
Python
import discord
|
|
from discord import app_commands
|
|
|
|
|
|
class LocalString:
|
|
def __init__(self, string):
|
|
self.string = string
|
|
|
|
def as_string(self):
|
|
return self.string
|
|
|
|
|
|
_ = LocalString
|