feat: add getmovementstock on backend

This commit is contained in:
2026-06-26 17:11:03 +03:00
parent 7b662bb618
commit 8000d241b4
2 changed files with 19 additions and 0 deletions
+1
View File
@@ -69,6 +69,7 @@ func main() {
admin.PATCH("/items/:id/avatar", handlers.UploadItemAvatar)
admin.POST("/stock/in", handlers.StockIn)
admin.POST("/stock/out", handlers.StockOut)
admin.GET("/stock/movements", handlers.GetStockMovements)
}
}