Main entry point added.

This commit is contained in:
alfistea0 2026-07-03 18:01:44 +03:00
commit b9116f35e9
2 changed files with 12 additions and 2 deletions

6
.gitignore vendored
View file

@ -197,9 +197,9 @@ cython_debug/
.abstra/
# Visual Studio Code
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# you could uncomment the following to ignore the entire vscode folder
# .vscode/
# Temporary file for partial code execution
@ -218,3 +218,5 @@ __marimo__/
# Streamlit
.streamlit/secrets.toml
*.swp

8
src/main.py Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env python3
def main():
return
if __name__ == "__main__":
main()