8 lines
145 B
Go
8 lines
145 B
Go
package users
|
|
|
|
// Bookmark represents a bookmark the user has set
|
|
type Bookmark struct {
|
|
Name string `json:"name"`
|
|
Path string `json:"path"`
|
|
}
|