Initialize micromail project with basic structure and functionality

This commit is contained in:
Edgar P. Burkhart 2025-05-16 23:02:56 +02:00
parent e249b4061c
commit d40e6aee19
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
6 changed files with 251 additions and 2 deletions

6
main.py Normal file
View file

@ -0,0 +1,6 @@
def main():
print("Hello from micromail!")
if __name__ == "__main__":
main()