mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 13:02:39 +00:00
22 lines
335 B
Go
22 lines
335 B
Go
|
package index
|
||
|
|
||
|
type Gist struct {
|
||
|
GistID uint
|
||
|
Username string
|
||
|
Title string
|
||
|
Content string
|
||
|
Filenames []string
|
||
|
Extensions []string
|
||
|
Languages []string
|
||
|
CreatedAt int64
|
||
|
UpdatedAt int64
|
||
|
}
|
||
|
|
||
|
type SearchGistMetadata struct {
|
||
|
Username string
|
||
|
Title string
|
||
|
Filename string
|
||
|
Extension string
|
||
|
Language string
|
||
|
}
|