mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
10 lines
254 B
Python
10 lines
254 B
Python
from vulkan.results import AbstractResult
|
|
from typing import Union
|
|
from discord.ext.commands import Context
|
|
from vulkan.controllers.Exceptions import Error
|
|
|
|
|
|
class SuccessResult(AbstractResult):
|
|
def __init__(self) -> None:
|
|
super().__init__()
|