| 123456789101112131415161718192021 |
- package com.video.controller;
- import com.video.api.VideoShareControllerAPI;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @author ceshi
- * @since 2023-03-30
- */
- @RestController
- public class VideoShareController implements VideoShareControllerAPI {
- }
|