Spaces:
Runtime error
Runtime error
fix: update import paths for KeyframeEntity and VideoEntity to include models module
Browse files
src/models/dtos/keyframes/mod.rs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
use crate::entities::{keyframes::KeyframeEntity, videos::VideoEntity};
|
| 2 |
|
| 3 |
#[derive(Debug, Clone, serde::Serialize, utoipa::ToSchema)]
|
| 4 |
pub struct KeyframeDto {
|
|
|
|
| 1 |
+
use crate::models::entities::{keyframes::KeyframeEntity, videos::VideoEntity};
|
| 2 |
|
| 3 |
#[derive(Debug, Clone, serde::Serialize, utoipa::ToSchema)]
|
| 4 |
pub struct KeyframeDto {
|
src/models/dtos/videos/mod.rs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
use crate::entities::videos::VideoEntity;
|
| 2 |
|
| 3 |
#[derive(Debug, Clone, serde::Serialize, utoipa::ToSchema)]
|
| 4 |
pub struct VideoDto {
|
|
|
|
| 1 |
+
use crate::models::entities::videos::VideoEntity;
|
| 2 |
|
| 3 |
#[derive(Debug, Clone, serde::Serialize, utoipa::ToSchema)]
|
| 4 |
pub struct VideoDto {
|