Skip to content

Commit

Permalink
🚚 move: μ˜μƒκ²Œμ‹œνŒ service νŒ¨ν‚€μ§€ 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
somsom13 committed May 20, 2022
1 parent c25cb5c commit 8fc2c4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/example/backend/video/VideoController.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
import com.example.backend.video.domain.Video;
import com.example.backend.video.domain.VideoComment;
import com.example.backend.video.dto.*;
import com.example.backend.video.service.VideoCommentService;
import com.example.backend.video.service.VideoService;
import lombok.RequiredArgsConstructor;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.backend.video;
package com.example.backend.video.service;

import com.example.backend.video.domain.VideoComment;
import com.example.backend.video.dto.VideoCommentsResponse;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package com.example.backend.video;
package com.example.backend.video.service;

import com.example.backend.customHashtag.CustomHashtag;
import com.example.backend.customHashtag.CustomHashtagRepository;
import com.example.backend.user.domain.User;
import com.example.backend.video.domain.*;
import com.example.backend.video.dto.*;
import com.example.backend.video.repository.*;
import com.example.backend.video.service.VideoCommentService;
import lombok.RequiredArgsConstructor;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
Expand Down

0 comments on commit 8fc2c4c

Please sign in to comment.