mirror of
https://github.com/thomiceli/opengist.git
synced 2025-01-07 01:22:41 +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
|
||
|
}
|