mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 11:52:12 +03:00
9 lines
203 B
Go
9 lines
203 B
Go
|
package api
|
||
|
|
||
|
type localQuery struct {
|
||
|
ID string `json:"id"`
|
||
|
Title string `json:"title,omitempty"`
|
||
|
Description string `json:"description,omitempty"`
|
||
|
Query string `json:"query"`
|
||
|
}
|