-
-
-
-
- package structs
-
- import (
- "time"
- )
-
-
- type TopicResponse struct {
- ID int64 `json:"id"`
- Name string `json:"topic_name"`
- RepoCount int `json:"repo_count"`
- Created time.Time `json:"created"`
- Updated time.Time `json:"updated"`
- }
-
-
- type TopicName struct {
- TopicNames []string `json:"topics"`
- }
-
-
- type RepoTopicOptions struct {
-
- Topics []string `json:"topics"`
- }
|