-
Notifications
You must be signed in to change notification settings - Fork 8
/
static_data.go
48 lines (43 loc) · 1.18 KB
/
static_data.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
48
package mangodex
// Publication demographic
const (
ShonenDemographic string = "shounen"
ShoujoDemographic string = "shoujo"
JoseiDemographic string = "josei"
SeinenDemograpic string = "seinen"
)
// Manga publication status
const (
OngoingStatus string = "ongoing"
CompletedStatus string = "completed"
HiatusStatus string = "hiatus"
CancelledStatus string = "cancelled"
)
// Manga reading status
const (
Reading string = "reading"
OnHold string = "on_hold"
PlanToRead string = "plan_to_read"
Dropped string = "dropped"
ReReading string = "re_reading"
Completed string = "completed"
)
// Manga content rating
const (
Safe string = "safe"
Suggestive string = "suggestive"
Erotica string = "erotica"
Porn string = "pornographic"
)
// Relationship types. Useful for reference expansions
const (
MangaRel string = "manga"
ChapterRel string = "chapter"
CoverArtRel string = "cover_art"
AuthorRel string = "author"
ArtistRel string = "artist"
ScanlationGroupRel string = "scanlation_group"
TagRel string = "tag"
UserRel string = "user"
CustomListRel string = "custom_list"
)