minio이미지 업로드 기능 테스트

This commit is contained in:
2025-01-25 22:45:27 +09:00
parent af57b56e69
commit d8111f6070
14 changed files with 219 additions and 3 deletions

8
obs_minio/urls.py Normal file
View File

@ -0,0 +1,8 @@
from django.urls import path
from . import views
app_name = 'obs_minio'
urlpatterns = [
path('upload/', views.upload_image, name='upload_image'),
]