mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
11 lines
151 B
Go
11 lines
151 B
Go
|
package dtos
|
||
|
|
||
|
type ShortURL struct {
|
||
|
UID string `json:"uid"`
|
||
|
URL string `json:"url"`
|
||
|
}
|
||
|
|
||
|
type CreateShortURLCmd struct {
|
||
|
Path string `json:"path"`
|
||
|
}
|