Removed non-finished code

This commit is contained in:
T-BENZIN 2025-08-15 12:28:23 +05:00
parent 131999816b
commit eb7733be69
2 changed files with 0 additions and 16 deletions

View File

@ -1,8 +0,0 @@
from abc import ABC, abstractmethod
class MessageFactory(ABC):
@staticmethod
@abstractmethod
def new(raw_message) -> object:
pass

View File

@ -1,8 +0,0 @@
from _common import MessageFactory
from openai_data_models import Message
class DiscordMessageFactory(MessageFactory):
@staticmethod
def new(raw_message) -> Message:
Message()