VideoShareController.java 381 B

123456789101112131415161718192021
  1. package com.video.controller;
  2. import com.video.api.VideoShareControllerAPI;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. /**
  6. * <p>
  7. * 前端控制器
  8. * </p>
  9. *
  10. * @author ceshi
  11. * @since 2023-03-30
  12. */
  13. @RestController
  14. public class VideoShareController implements VideoShareControllerAPI {
  15. }