mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
10 lines
349 B
Go
10 lines
349 B
Go
package pastes
|
|
|
|
type Paste struct {
|
|
ID string `json:"id"`
|
|
Content string `json:"content"`
|
|
ModificationToken string `json:"modificationToken,omitempty"`
|
|
Created int64 `json:"created"`
|
|
Metadata map[string]interface{} `json:"metadata"`
|
|
}
|