- Database schema: tablets, users, loans (junction table) - CLI app: minimal_app.py - Web apps: app.py (Flask), simple_app.py (http.server) - Features: loan management, search, user loans view, project notes - Git structure: CONTRIBUTING.md, .gitignore Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
6 lines
92 B
Python
6 lines
92 B
Python
def main():
|
|
print("Hello from gestiontablets!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|