From a02f160e20eb2d1114fb6da045b79f16a7034572 Mon Sep 17 00:00:00 2001 From: Luke Mino-Altherr Date: Tue, 3 Feb 2026 11:54:03 -0800 Subject: [PATCH] Move hashing.py to services directory Amp-Thread-ID: https://ampcode.com/threads/T-019c2510-33fa-7199-ae4b-bc31102277a7 Co-authored-by: Amp --- app/assets/manager.py | 2 +- app/assets/{ => services}/hashing.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename app/assets/{ => services}/hashing.py (100%) diff --git a/app/assets/manager.py b/app/assets/manager.py index 8c347bf5f..b53112b71 100644 --- a/app/assets/manager.py +++ b/app/assets/manager.py @@ -12,7 +12,7 @@ import mimetypes import contextlib from typing import Sequence -import app.assets.hashing as hashing +import app.assets.services.hashing as hashing from app.database.db import create_session from app.assets.api import schemas_out, schemas_in from app.assets.database.queries import ( diff --git a/app/assets/hashing.py b/app/assets/services/hashing.py similarity index 100% rename from app/assets/hashing.py rename to app/assets/services/hashing.py