mirror of
https://github.com/thomiceli/opengist.git
synced 2025-03-12 02:21:45 -05:00
25 lines
408 B
Go
25 lines
408 B
Go
package index
|
|
|
|
type Gist struct {
|
|
GistID uint
|
|
UserID uint
|
|
Visibility uint
|
|
Username string
|
|
Title string
|
|
Content string
|
|
Filenames []string
|
|
Extensions []string
|
|
Languages []string
|
|
Topics []string
|
|
CreatedAt int64
|
|
UpdatedAt int64
|
|
}
|
|
|
|
type SearchGistMetadata struct {
|
|
Username string
|
|
Title string
|
|
Filename string
|
|
Extension string
|
|
Language string
|
|
Topic string
|
|
}
|