mirror of https://github.com/grafana/grafana.git
7 lines
99 B
Go
7 lines
99 B
Go
|
|
package dtos
|
||
|
|
|
||
|
|
type NewApiKeyResult struct {
|
||
|
|
Name string `json:"name"`
|
||
|
|
Key string `json:"key"`
|
||
|
|
}
|