Files
pythonkurs/rest_chat_server/hello.py
2025-05-29 10:20:24 +02:00

7 lines
94 B
Python

def main():
print("Hello from rest-chat-server!")
if __name__ == "__main__":
main()