This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
consumer-api/messagesender.py
Torma Kristóf 97fa82d90e
All checks were successful
continuous-integration/drone/push Build is passing
added messagesner class
2020-03-29 15:06:41 +02:00

31 lines
573 B
Python

#!/usr/bin/env python
#IDE JÖNNEK IMPORTOK
"""
Main Flask RESTful API
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "app"
__version__text__ = "1"
class MessageSender:
"""
Üzenetek küldéséért felelős komponens.
"""
def __init__(self):
"""
Inicializálja az osztályt.
"""
pass
def cucc(self, szam: int, szoveg: str) -> str:
"""
Ez egy metodus
:param szam:
:param szoveg:
:return: str tipus
"""
pass