forked from mediahome/javscrape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.go
47 lines (42 loc) · 793 Bytes
/
content.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package scrape
import "time"
// Genre ...
type Genre struct {
URL string
Content string
}
// Sample ...
type Sample struct {
Index int
Thumb string
Image string
Title string
}
// Star ...
type Star struct {
Image string
StarLink string
Name string //english name
Alias []string //other name(katakana,...)
}
// Content ...
type Content struct {
From string //where this
Language string
Uncensored bool
ID string
Title string
OriginalTitle string
Year string
ReleaseDate time.Time
Studio string
Director string
MovieSet string
Plot string
Genres []*Genre
Actors []*Star
Poster string
Thumb string
Sample []*Sample
Publisher string
}