refactor and add tests, v0.2.0

This commit is contained in:
2025-08-13 20:07:40 -07:00
parent 76be59254c
commit 809dbeb783
32 changed files with 1401 additions and 32 deletions

View File

@@ -1,5 +1,9 @@
from src.embeddingbuddy.app import create_app, run_app
def main():
print("Hello from embeddingbuddy!")
app = create_app()
run_app(app)
if __name__ == "__main__":