fix: api-key leak again...

Signed-off-by: SoXX <soxx@fenpa.ws>
This commit is contained in:
SoXX 2023-10-23 11:16:39 +02:00
parent f26e5b223a
commit f69c1b14a3
2 changed files with 24 additions and 11 deletions

View File

@ -13,8 +13,8 @@ func main() {
Client: http.Client{}, Client: http.Client{},
Host: "https://e621.net", Host: "https://e621.net",
UserAgent: "Go-e621-SDK (@username)", UserAgent: "Go-e621-SDK (@username)",
Username: "selloo", // Replace with your username Username: "", // Replace with your username
APIKey: "zt7XAaewLqP4AWvQi5WrLNwN", // Replace with your API key APIKey: "", // Replace with your API key
} }
// Log: Getting a single tag. // Log: Getting a single tag.

View File

@ -1,13 +1,26 @@
package model package model
type TagCategory int
const (
General TagCategory = iota
Artist
Copyright TagCategory = iota + 1
Character
Species
Invalide
Meta
Lore
)
type Tag struct { type Tag struct {
ID int64 `json:"id"` ID int64 `json:"id"`
Name string `json:"name"` Name string `json:"name"`
PostCount int64 `json:"post_count"` PostCount int64 `json:"post_count"`
RelatedTags string `json:"related_tags"` RelatedTags string `json:"related_tags"`
RelatedTagsUpdatedAt string `json:"related_tags_updated_at"` RelatedTagsUpdatedAt string `json:"related_tags_updated_at"`
Category int64 `json:"category"` Category TagCategory `json:"category"`
IsLocked bool `json:"is_locked"` IsLocked bool `json:"is_locked"`
CreatedAt string `json:"created_at"` CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"` UpdatedAt string `json:"updated_at"`
} }