12345678910111213141516171819202122232425262728293031 |
- package api
- var DemoVideos = []Video{
- {
- Id: 1,
- Author: DemoUser,
- //PlayUrl: "http://pathcystore.oss-cn-shanghai.aliyuncs.com/video/demo.mp4",
- PlayUrl: "https://www.w3schools.com/html/movie.mp4",
- CoverUrl: "https://cdn.pixabay.com/photo/2016/03/27/18/10/bear-1283347_1280.jpg",
- FavoriteCount: 0,
- CommentCount: 0,
- IsFavorite: false,
- },
- }
- var DemoComments = []Comment{
- {
- Id: 1,
- User: DemoUser,
- Content: "Test Comment",
- CreateDate: "05-01",
- },
- }
- var DemoUser = User{
- Id: 1,
- Name: "TestUser",
- FollowCount: 0,
- FollowerCount: 0,
- IsFollow: false,
- }
|