moving files

This commit is contained in:
dm
2025-08-26 17:01:27 +03:00
parent 82671319e4
commit 0462921ee4
4 changed files with 1 additions and 7 deletions

0
app/__init__.py Normal file
View File

View File

@@ -2,7 +2,7 @@ from fastapi import FastAPI, File, UploadFile, HTTPException
from fastapi.responses import FileResponse, PlainTextResponse
from sqlalchemy import exists
import hashlib
import db
from . import db
import os
def compute_hash(data: bytes, algorithm="sha256") -> str:

View File

View File

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